Add ability to restart

This commit is contained in:
ElMoribond 2021-06-23 14:38:38 +02:00 committed by Blake Blackshear
parent fe2e32c84f
commit 955d9e6ec2

View File

@ -49,7 +49,7 @@ export default function AppBar() {
const handleRestart = useCallback(() => {
setShowMoreMenu(false);
setShowDialog(true);
});
}, [setShowDialog]);
return (
<Fragment>
@ -70,8 +70,8 @@ export default function AppBar() {
title="Restart Frigate"
text="Are you sure ?"
actions={[
{ text: "Yes", color: "red", onClick: handleClickRestartDialog },
{ text: "Cancel", onClick: handleDismissRestartDialog },
{ text: 'Yes' color: 'red', onClick: handleClickRestartDialog },
{ text: 'Cancel', onClick: handleDismissRestartDialog },
]}
/>
) : null},