From 70ded4c2cd18729669f19c8f6855ac73ad8d8d96 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Mon, 8 Dec 2025 22:38:06 +0200 Subject: [PATCH] chore(breadcrumb): use bold for highlighting active entry --- apps/client/src/widgets/Breadcrumb.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/apps/client/src/widgets/Breadcrumb.tsx b/apps/client/src/widgets/Breadcrumb.tsx index 632d2c971..8f09fdd2b 100644 --- a/apps/client/src/widgets/Breadcrumb.tsx +++ b/apps/client/src/widgets/Breadcrumb.tsx @@ -64,8 +64,11 @@ function BreadcrumbSeparatorDropdownContent({ notePath, noteContext, activeNoteP noteContext?.setNote(childNotePath)} - checked={childNotePath === activeNotePath} - >{note.title} + > + {childNotePath !== activeNotePath + ? note.title + : {note.title}} + })}