fix(ui) : hide archived groups in task creation and remove unused TaskDrawer

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Matthieu
2026-03-19 09:11:57 +01:00
parent b66caf6824
commit 26c41f01c0
2 changed files with 1 additions and 328 deletions

View File

@@ -365,7 +365,7 @@ const userOptions = computed(() =>
)
const groupOptions = computed(() => {
let filtered = props.groups
let filtered = props.groups.filter(g => !g.archived)
if (showProjectSelect.value && form.projectId) {
filtered = filtered.filter(g => g.project?.id === form.projectId)
}