Skip to content

Commit

Permalink
fix(database): make mobile kanban-view more similar to pc version
Browse files Browse the repository at this point in the history
this was just from looking at 'code --diff */kanban-view.ts'. It might be pointless cargo-culting
  • Loading branch information
alsuren committed Dec 28, 2024
1 parent 9b22fc4 commit d99feaa
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ export class MobileDataViewKanban extends DataViewBase<
},
hideIndicator: () => {},
moveTo: () => {},
showIndicator: () => {
return false;
showIndicator: evt => {
return this.dragController.shooIndicator(evt, undefined) != null;
},
view: this.props.view,
eventTrace: this.props.eventTrace,
Expand Down

0 comments on commit d99feaa

Please sign in to comment.