From f52088153899a469d39325db2bd392b2c95ef150 Mon Sep 17 00:00:00 2001 From: kolaente Date: Thu, 19 Dec 2024 17:16:13 +0100 Subject: [PATCH] fix(kanban): do not close task input after creating tasks Resolves https://kolaente.dev/vikunja/vikunja/issues/2192 --- frontend/src/components/project/views/ProjectKanban.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/src/components/project/views/ProjectKanban.vue b/frontend/src/components/project/views/ProjectKanban.vue index 3a91669e2..3d2ff48d5 100644 --- a/frontend/src/components/project/views/ProjectKanban.vue +++ b/frontend/src/components/project/views/ProjectKanban.vue @@ -571,7 +571,6 @@ async function addTaskToBucket(bucketId: IBucket['id']) { bucketId, projectId: project.value.id, }) - toggleShowNewTaskInput(bucketId) newTaskText.value = '' kanbanStore.addTaskToBucket(task) scrollTaskContainerToTop(bucketId)