fix(ribbon): formatting toolbar not showing up if focus on edited notes is active

This commit is contained in:
Elian Doran 2025-12-02 10:13:54 +02:00
parent 9f74a54c0d
commit 2e767ffde1
No known key found for this signature in database

View File

@ -26,7 +26,7 @@ export const RIBBON_TAB_DEFINITIONS: TabConfiguration[] = [
&& !(await noteContext?.isReadOnly()),
toggleCommand: "toggleRibbonTabClassicEditor",
content: FormattingToolbar,
activate: () => !options.is("editedNotesOpenInRibbon"),
activate: ({ note }) => !options.is("editedNotesOpenInRibbon") || !note?.hasOwnedLabel("dateNote"),
stayInDom: true
},
{