fix terminal wrap

This commit is contained in:
Olivier Gagnon 2021-09-18 02:21:48 -04:00
parent fd55155fea
commit be9b595590
2 changed files with 5 additions and 6 deletions

@ -33,14 +33,12 @@ export function cat(
showLiterature(file); showLiterature(file);
return; return;
} else if (filename.endsWith(".msg")) { } else if (filename.endsWith(".msg")) {
const file = server.messages[i]; const file = server.messages[i] as Message;
if (typeof file === "string") throw new Error(".msg file should not be a .lit"); if (file.filename !== filename) continue;
if (file.filename === filename) {
showMessage(file); showMessage(file);
return; return;
} }
} }
}
} else if (filename.endsWith(".txt")) { } else if (filename.endsWith(".txt")) {
const txt = terminal.getTextFile(player, filename); const txt = terminal.getTextFile(player, filename);
if (txt != null) { if (txt != null) {

@ -31,6 +31,7 @@ const useStyles = makeStyles((theme: Theme) =>
}, },
preformatted: { preformatted: {
whiteSpace: "pre-wrap", whiteSpace: "pre-wrap",
overflowWrap: "anywhere",
margin: theme.spacing(0), margin: theme.spacing(0),
}, },
list: { list: {