chore(breadcrumb): use bold for highlighting active entry

This commit is contained in:
Elian Doran 2025-12-08 22:38:06 +02:00
parent 3fe45db6ef
commit 70ded4c2cd
No known key found for this signature in database

View File

@ -64,8 +64,11 @@ function BreadcrumbSeparatorDropdownContent({ notePath, noteContext, activeNoteP
<FormListItem
icon={note.getIcon()}
onClick={() => noteContext?.setNote(childNotePath)}
checked={childNotePath === activeNotePath}
>{note.title}</FormListItem>
>
{childNotePath !== activeNotePath
? note.title
: <strong>{note.title}</strong>}
</FormListItem>
</li>
})}
</ul>