fix(command_palette): command title not updated while navigating

This commit is contained in:
Elian Doran 2025-07-27 21:36:42 +03:00
parent b6f55b0e1a
commit c09e124805
No known key found for this signature in database

View File

@ -90,6 +90,7 @@ async function autocompleteSource(term: string, cb: (rows: Suggestion[]) => void
action: "command",
commandId: cmd.id,
noteTitle: cmd.name,
notePathTitle: `>${cmd.name}`,
highlightedNotePathTitle: cmd.name,
commandDescription: cmd.description,
commandShortcut: cmd.shortcut,
@ -105,6 +106,7 @@ async function autocompleteSource(term: string, cb: (rows: Suggestion[]) => void
action: "command",
commandId: cmd.id,
noteTitle: cmd.name,
notePathTitle: `>${cmd.name}`,
highlightedNotePathTitle: cmd.name,
commandDescription: cmd.description,
commandShortcut: cmd.shortcut,