Skip to content
This repository has been archived by the owner on Mar 16, 2024. It is now read-only.

fixed bug #59

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/src/pages/Server.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ export const Server = ({id, className}: Props) => {
<Button color={'danger'} variant="solid" disabled={!serverStatus} onClick={onServerStopButtonClicked}>Stop</Button>
<Button color={'danger'} variant="solid" disabled={!serverStatus} onClick={() => setForceStopModalOpen(true)}>Force stop</Button>
</ButtonGroup>
<UpdaterModal open={updaterModalOpen} onClose={() => setUpdaterModalOpen(false)}></UpdaterModal>
<UpdaterModal open={updaterModalOpen} onClose={() => {setUpdaterModalOpen(false);}}></UpdaterModal>
<Modal open={forceStopModalOpen} onClose={() => setForceStopModalOpen(false)}>
<ModalDialog variant="outlined" role="alertdialog">
<DialogTitle>
Expand Down
1 change: 0 additions & 1 deletion frontend/src/pages/UpdaterModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ export function UpdaterModal({onCompleted, open, onClose}: Props) {
return (
<Modal open={open} onClose={onClose} >
<ModalDialog>
<ModalClose/>
<Typography level="title-md">
Updating server...
</Typography>
Expand Down
Loading