mirror of
https://github.com/TriliumNext/Trilium.git
synced 2025-12-10 03:53:37 -06:00
chore(breadcrumb): use bold for highlighting active entry
This commit is contained in:
parent
3fe45db6ef
commit
70ded4c2cd
@ -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>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user