fix: quick add opens create ui

Add createKey to quick-add manifests and client create dialog host.

FAB and command palette open in-place create UIs instead of navigating away.
This commit is contained in:
ginnoir
2026-07-04 11:47:35 -05:00
parent 76f68548b2
commit 68a573c4d6
24 changed files with 1017 additions and 20 deletions
+3
View File
@@ -93,18 +93,21 @@ const manifest: ModuleManifest = {
label: "Add to shopping",
icon: "shopping-cart",
url: "/lists",
createKey: "lists.add-shopping",
},
{
id: "lists.add-task",
label: "Add to tasks",
icon: "list-checks",
url: "/lists",
createKey: "lists.add-task",
},
{
id: "lists.new-list",
label: "New list",
icon: "list-plus",
url: "/lists",
createKey: "lists.new-list",
},
],
};