mirror of
https://github.com/zadam/trilium.git
synced 2025-12-12 10:24:23 +01: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
|
<FormListItem
|
||||||
icon={note.getIcon()}
|
icon={note.getIcon()}
|
||||||
onClick={() => noteContext?.setNote(childNotePath)}
|
onClick={() => noteContext?.setNote(childNotePath)}
|
||||||
checked={childNotePath === activeNotePath}
|
>
|
||||||
>{note.title}</FormListItem>
|
{childNotePath !== activeNotePath
|
||||||
|
? note.title
|
||||||
|
: <strong>{note.title}</strong>}
|
||||||
|
</FormListItem>
|
||||||
</li>
|
</li>
|
||||||
})}
|
})}
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user