diff --git a/frontend/src/components/project/views/ProjectKanban.vue b/frontend/src/components/project/views/ProjectKanban.vue index 4597c665b..458de580e 100644 --- a/frontend/src/components/project/views/ProjectKanban.vue +++ b/frontend/src/components/project/views/ProjectKanban.vue @@ -576,6 +576,11 @@ async function addTaskToBucket(bucketId: IBucket['id']) { newTaskText.value = '' kanbanStore.addTaskToBucket(task) scrollTaskContainerToTop(bucketId) + + const bucket = kanbanStore.getBucketById(bucketId) + if (bucket && bucket.count >= bucket.limit) { + toggleShowNewTaskInput(bucketId) + } } function scrollTaskContainerToTop(bucketId: IBucket['id']) {