diff --git a/frontend/src/lib/components/project/Column.svelte b/frontend/src/lib/components/project/Column.svelte index 8a535e1..26b1c19 100644 --- a/frontend/src/lib/components/project/Column.svelte +++ b/frontend/src/lib/components/project/Column.svelte @@ -15,6 +15,10 @@ let newOptionValue = option?.value || `No ${primaryTag?.title}`; + $: if (!option) { + newOptionValue = `No ${primaryTag?.title}`; + } + async function onDrop(e: DragEvent) { e.preventDefault(); if (!primaryTag || !$currentDraggedCard || !$currentDraggedCard.cardTags) return;