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
parent 334095252c
commit 0af414a2b2

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"