aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/js/features/repo-projects.ts
diff options
context:
space:
mode:
Diffstat (limited to 'web_src/js/features/repo-projects.ts')
-rw-r--r--web_src/js/features/repo-projects.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/web_src/js/features/repo-projects.ts b/web_src/js/features/repo-projects.ts
index 950d78fec7..bc2bb69a33 100644
--- a/web_src/js/features/repo-projects.ts
+++ b/web_src/js/features/repo-projects.ts
@@ -60,7 +60,7 @@ async function initRepoProjectSortable() {
handle: '.project-column-header',
delayOnTouchOnly: true,
delay: 500,
- onSort: async () => {
+ onSort: async () => { // eslint-disable-line @typescript-eslint/no-misused-promises
boardColumns = mainBoard.querySelectorAll('.project-column');
const columnSorting = {
@@ -84,8 +84,8 @@ async function initRepoProjectSortable() {
const boardCardList = boardColumn.querySelectorAll('.cards')[0];
createSortable(boardCardList, {
group: 'shared',
- onAdd: moveIssue,
- onUpdate: moveIssue,
+ onAdd: moveIssue, // eslint-disable-line @typescript-eslint/no-misused-promises
+ onUpdate: moveIssue, // eslint-disable-line @typescript-eslint/no-misused-promises
delayOnTouchOnly: true,
delay: 500,
});