mirror of
https://github.com/zadam/trilium.git
synced 2025-12-05 15:04:24 +01:00
chore(note_map): improve the icon for expanding/collapsing the map
This commit is contained in:
parent
eec6f7336c
commit
85b4f652f4
@ -29,14 +29,14 @@ export default function NoteMapTab({ note }: TabContext) {
|
|||||||
|
|
||||||
{!isExpanded ? (
|
{!isExpanded ? (
|
||||||
<ActionButton
|
<ActionButton
|
||||||
icon="bx bx-arrow-to-bottom"
|
icon="bx bx-expand-vertical"
|
||||||
text={t("note_map.open_full")}
|
text={t("note_map.open_full")}
|
||||||
className="open-full-button"
|
className="open-full-button"
|
||||||
onClick={() => setExpanded(true)}
|
onClick={() => setExpanded(true)}
|
||||||
/>
|
/>
|
||||||
) : (
|
) : (
|
||||||
<ActionButton
|
<ActionButton
|
||||||
icon="bx bx-arrow-to-top"
|
icon="bx bx-collapse-vertical"
|
||||||
text={t("note_map.collapse")}
|
text={t("note_map.collapse")}
|
||||||
className="collapse-button"
|
className="collapse-button"
|
||||||
onClick={() => setExpanded(false)}
|
onClick={() => setExpanded(false)}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user