From 2de94bc902573e8aa8767b96eecbef0ecf393ad4 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 17 Oct 2021 16:26:17 +0200 Subject: [PATCH] fix: lint --- src/views/list/views/Kanban.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/list/views/Kanban.vue b/src/views/list/views/Kanban.vue index 11e3837d..bc389640 100644 --- a/src/views/list/views/Kanban.vue +++ b/src/views/list/views/Kanban.vue @@ -424,7 +424,7 @@ export default { const newTask = cloneDeep(task) // cloning the task to avoid vuex store mutations newTask.bucketId = newBucket.id, - newTask.kanbanPosition = calculateItemPosition(taskBefore !== null ? taskBefore.kanbanPosition : null, taskAfter !== null ? taskAfter.kanbanPosition : null), + newTask.kanbanPosition = calculateItemPosition(taskBefore !== null ? taskBefore.kanbanPosition : null, taskAfter !== null ? taskAfter.kanbanPosition : null) try { await this.$store.dispatch('tasks/update', newTask)