diff --git a/frontend/src/components/project/views/ProjectKanban.vue b/frontend/src/components/project/views/ProjectKanban.vue index 75d8d1fd3..252aa3175 100644 --- a/frontend/src/components/project/views/ProjectKanban.vue +++ b/frontend/src/components/project/views/ProjectKanban.vue @@ -529,6 +529,7 @@ async function updateTaskPosition(e) { projectId: project.value.id, })) Object.assign(newTask, updatedTaskBucket.task) + newTask.bucketId = updatedTaskBucket.bucketId if (updatedTaskBucket.bucketId !== newTask.bucketId) { kanbanStore.moveTaskToBucket(newTask, updatedTaskBucket.bucketId) }