Skip to content

Commit

Permalink
align Accept Changes button
Browse files Browse the repository at this point in the history
proddy committed Nov 6, 2024
1 parent 2623178 commit bba0b76
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions interface/src/app/status/SystemLog.tsx
Original file line number Diff line number Diff line change
@@ -261,16 +261,6 @@ const SystemLog = () => {
>
{LL.EXPORT()}
</Button>
{dirtyFlags && dirtyFlags.length !== 0 && (
<Button
startIcon={<WarningIcon color="warning" />}
variant="contained"
color="info"
onClick={saveSettings}
>
{LL.APPLY_CHANGES(dirtyFlags.length)}
</Button>
)}
</Grid>

{readOpen ? (
@@ -315,6 +305,19 @@ const SystemLog = () => {
)}
</>
)}

{dirtyFlags && dirtyFlags.length !== 0 && (
<Grid>
<Button
startIcon={<WarningIcon color="warning" />}
variant="contained"
color="info"
onClick={saveSettings}
>
{LL.APPLY_CHANGES(dirtyFlags.length)}
</Button>
</Grid>
)}
</Grid>

<Box

0 comments on commit bba0b76

Please sign in to comment.