fix: adjust dialog action button variant

This commit is contained in:
GyDi
2022-08-15 00:55:35 +08:00
parent 33ce235713
commit cb48600b40
4 changed files with 15 additions and 5 deletions

View File

@@ -145,7 +145,9 @@ const WebUIViewer = ({ handler, onError }: Props) => {
</DialogContent>
<DialogActions>
<Button onClick={() => setOpen(false)}>{t("Back")}</Button>
<Button variant="outlined" onClick={() => setOpen(false)}>
{t("Back")}
</Button>
</DialogActions>
</Dialog>
);