Skip to content
This repository has been archived by the owner on Oct 29, 2024. It is now read-only.

Commit

Permalink
Invert icons used for import / export (#48)
Browse files Browse the repository at this point in the history
Signed-off-by: Guillaume Tardif <[email protected]>

Signed-off-by: Guillaume Tardif <[email protected]>
  • Loading branch information
gtardif authored Aug 29, 2022
1 parent 91a6fc1 commit 2e397e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ui/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function CustomToolbar({openDialog}) {
<GridToolbarDensitySelector/>
</Grid>
<Grid item>
<Button variant="contained" onClick={openDialog} endIcon={<UploadIcon/>}>Import into new
<Button variant="contained" onClick={openDialog} endIcon={<DownloadIcon/>}>Import into new
volume</Button>
</Grid>
</Grid>
Expand Down Expand Up @@ -175,7 +175,7 @@ export function App() {
key={"action_export_" + params.row.id}
icon={
<Tooltip title="Export volume">
<DownloadIcon>Export volume</DownloadIcon>
<UploadIcon>Export volume</UploadIcon>
</Tooltip>
}
label="Export volume"
Expand All @@ -186,7 +186,7 @@ export function App() {
key={"action_import_" + params.row.id}
icon={
<Tooltip title="Import">
<UploadIcon>Import</UploadIcon>
<DownloadIcon>Import</DownloadIcon>
</Tooltip>
}
label="Import"
Expand Down

0 comments on commit 2e397e0

Please sign in to comment.