diff --git a/frontend/src/components/project/views/ProjectKanban.vue b/frontend/src/components/project/views/ProjectKanban.vue index 222963747..556b9e6b3 100644 --- a/frontend/src/components/project/views/ProjectKanban.vue +++ b/frontend/src/components/project/views/ProjectKanban.vue @@ -338,7 +338,7 @@ const DRAG_OPTIONS = { ghostClass: 'ghost', dragClass: 'task-dragging', delayOnTouchOnly: true, - delay: 150, + delay: 1000, } as const const MIN_SCROLL_HEIGHT_PERCENT = 0.25 diff --git a/frontend/src/components/project/views/ProjectList.vue b/frontend/src/components/project/views/ProjectList.vue index 763db8070..cf51ece1e 100644 --- a/frontend/src/components/project/views/ProjectList.vue +++ b/frontend/src/components/project/views/ProjectList.vue @@ -60,6 +60,8 @@ type: 'transition-group' }" :animation="100" + :delay-on-touch-only="true" + :delay="1000" ghost-class="task-ghost" @start="handleDragStart" @end="saveTaskPosition"