diff --git a/frontend/src/components/project/views/ProjectKanban.vue b/frontend/src/components/project/views/ProjectKanban.vue index 651a90484..0f6c5c5b6 100644 --- a/frontend/src/components/project/views/ProjectKanban.vue +++ b/frontend/src/components/project/views/ProjectKanban.vue @@ -624,10 +624,10 @@ async function updateTaskPosition(e) { projectId: projectIdWithFallback.value, })) Object.assign(newTask, updatedTaskBucket.task) - newTask.bucketId = updatedTaskBucket.bucketId if (updatedTaskBucket.bucketId !== newTask.bucketId) { kanbanStore.moveTaskToBucket(newTask, updatedTaskBucket.bucketId) } + newTask.bucketId = updatedTaskBucket.bucketId if (updatedTaskBucket.bucket) { kanbanStore.setBucketById(updatedTaskBucket.bucket, false) }