From 68591fb51161ff114fc8748b9de5377453d2c596 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Thu, 11 Dec 2025 16:48:49 +0200 Subject: [PATCH] feat(note_info): hide ribbon on new layout --- apps/client/src/widgets/ribbon/RibbonDefinition.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/widgets/ribbon/RibbonDefinition.ts b/apps/client/src/widgets/ribbon/RibbonDefinition.ts index a76e97140..e2779e287 100644 --- a/apps/client/src/widgets/ribbon/RibbonDefinition.ts +++ b/apps/client/src/widgets/ribbon/RibbonDefinition.ts @@ -132,7 +132,7 @@ export const RIBBON_TAB_DEFINITIONS: TabConfiguration[] = [ { title: t("note_info_widget.title"), icon: "bx bx-info-circle", - show: ({ note }) => !!note, + show: ({ note }) => !isNewLayout && !!note, content: NoteInfoTab, toggleCommand: "toggleRibbonTabNoteInfo" }