File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ import {
1010 mdiDotsVertical ,
1111 mdiStarOutline ,
1212 mdiStar ,
13+ mdiExportVariant ,
1314} from '@mdi/js'
1415import { borderBottom , flexCenter } from '../../lib/styled/styleFunctions'
1516import ToolbarIconButton from '../atoms/ToolbarIconButton'
@@ -344,6 +345,11 @@ const NotePageToolbar = ({
344345 onClick = { ! note . data . bookmarked ? bookmark : unbookmark }
345346 iconPath = { note . data . bookmarked ? mdiStar : mdiStarOutline }
346347 />
348+ < ToolbarIconButton
349+ title = { t ( 'note.export' ) }
350+ onClick = { openExportContextMenu }
351+ iconPath = { mdiExportVariant }
352+ />
347353 { note . trashed ? (
348354 < >
349355 < ToolbarIconButton
@@ -364,11 +370,6 @@ const NotePageToolbar = ({
364370 iconPath = { mdiTrashCan }
365371 />
366372 ) }
367- < ToolbarIconButton
368- title = { t ( 'note.export' ) }
369- onClick = { openExportContextMenu }
370- iconPath = { mdiDotsVertical }
371- />
372373 </ Control >
373374 ) }
374375 </ Container >
You can’t perform that action at this time.
0 commit comments