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:
Bernt Christian Egeland 2021-08-19 18:24:23 +02:00 committed by Blake Blackshear
parent 26424488a5
commit 5ae4f47e96

View File

@ -63,7 +63,7 @@ export default function AppBar() {
<MenuSeparator />
<MenuItem icon={FrigateRestartIcon} label="Restart Frigate" onSelect={handleRestart} />
</Menu>
) : null},
) : null}
{showDialog ? (
<Dialog
onDismiss={handleDismissRestartDialog}
@ -74,7 +74,7 @@ export default function AppBar() {
{ text: 'Cancel', onClick: handleDismissRestartDialog },
]}
/>
) : null},
) : null}
{showDialogWait ? (
<Dialog
title="Restart in progress"