bucket handling fixes better

This commit is contained in:
2026-03-03 10:18:41 -06:00
parent d9a2b05bb1
commit 7ee6b795f7
2 changed files with 11 additions and 14 deletions
+2
View File
@@ -9,6 +9,8 @@ export const QuickEntry: Component = () => {
const [isOpen, setIsOpen] = createSignal(false);
// Autofill tags based on context when opening
const initialTags = createMemo(() => {
if (!isOpen()) return [];
const tags: string[] = [];
const ctx = currentTaskContext();