mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
removed comma. This was causing the main window to be pulled down behind the headerbar, hence the odd menu behavior
This commit is contained in:
parent
26424488a5
commit
5ae4f47e96
@ -63,7 +63,7 @@ export default function AppBar() {
|
|||||||
<MenuSeparator />
|
<MenuSeparator />
|
||||||
<MenuItem icon={FrigateRestartIcon} label="Restart Frigate" onSelect={handleRestart} />
|
<MenuItem icon={FrigateRestartIcon} label="Restart Frigate" onSelect={handleRestart} />
|
||||||
</Menu>
|
</Menu>
|
||||||
) : null},
|
) : null}
|
||||||
{showDialog ? (
|
{showDialog ? (
|
||||||
<Dialog
|
<Dialog
|
||||||
onDismiss={handleDismissRestartDialog}
|
onDismiss={handleDismissRestartDialog}
|
||||||
@ -74,7 +74,7 @@ export default function AppBar() {
|
|||||||
{ text: 'Cancel', onClick: handleDismissRestartDialog },
|
{ text: 'Cancel', onClick: handleDismissRestartDialog },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
) : null},
|
) : null}
|
||||||
{showDialogWait ? (
|
{showDialogWait ? (
|
||||||
<Dialog
|
<Dialog
|
||||||
title="Restart in progress"
|
title="Restart in progress"
|
||||||
|
Loading…
Reference in New Issue
Block a user