From 13c4aec461cff78c2708334fe11e173d584f2cb8 Mon Sep 17 00:00:00 2001 From: kolaente Date: Tue, 14 Apr 2026 12:43:55 +0200 Subject: [PATCH] fix(frontend/kanban): honor server bucket redirect on drag (#2618) --- frontend/src/components/project/views/ProjectKanban.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) }