From f442c56ed6aa0dfe369cdb7e4307ec6887b5eab9 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Fri, 3 Oct 2025 16:01:31 +0300 Subject: [PATCH] fix(client/options): missing ribbon widgets section in Appearance --- .../widgets/type_widgets/options/appearance.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/apps/client/src/widgets/type_widgets/options/appearance.tsx b/apps/client/src/widgets/type_widgets/options/appearance.tsx index e3ba25440..233186ffe 100644 --- a/apps/client/src/widgets/type_widgets/options/appearance.tsx +++ b/apps/client/src/widgets/type_widgets/options/appearance.tsx @@ -90,6 +90,7 @@ export default function AppearanceSettings() { {isElectron() && } + ) } + +function RibbonOptions() { + const [ editedNotesOpenInRibbon, setEditedNotesOpenInRibbon ] = useTriliumOptionBool("editedNotesOpenInRibbon"); + + return ( + + + + ) +}