diff --git a/web_src/js/features/repo-projects.js b/web_src/js/features/repo-projects.js index 9777e6c8e..78a9b14ad 100644 --- a/web_src/js/features/repo-projects.js +++ b/web_src/js/features/repo-projects.js @@ -49,6 +49,8 @@ async function initRepoProjectSortable() { filter: '[data-id="0"]', animation: 150, ghostClass: 'card-ghost', + delayOnTouchOnly: true, + delay: 500, onSort: () => { boardColumns = mainBoard.getElementsByClassName('board-column'); for (let i = 0; i < boardColumns.length; i++) { @@ -76,6 +78,8 @@ async function initRepoProjectSortable() { ghostClass: 'card-ghost', onAdd: moveIssue, onUpdate: moveIssue, + delayOnTouchOnly: true, + delay: 500, }); } }