Merge pull request #1414 from danielyxie/dev

cat now accepts newline
This commit is contained in:
hydroflame 2021-10-04 13:15:20 -04:00 committed by GitHub
commit 1c06dbbbc8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -42,7 +42,7 @@ export function AlertManager(): React.ReactElement {
<> <>
{alerts.length > 0 && ( {alerts.length > 0 && (
<Modal open={true} onClose={close}> <Modal open={true} onClose={close}>
<Box> <Box overflow="scroll" sx={{ overflowWrap: "break-word", whiteSpace: "pre-line" }}>
<Typography>{alerts[0].text}</Typography> <Typography>{alerts[0].text}</Typography>
</Box> </Box>
</Modal> </Modal>