mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-05-12 18:40:07 +02:00
v0.55.0
This commit is contained in:
@@ -109,7 +109,11 @@ function ASCIICity(props: IProps): React.ReactElement {
|
||||
const elems: JSX.Element[] = [];
|
||||
const lines = props.city.asciiArt.split("\n");
|
||||
for (const i in lines) {
|
||||
elems.push(<pre key={i}>{lineElems(lines[i])}</pre>);
|
||||
elems.push(
|
||||
<Typography key={i} sx={{ lineHeight: "1em", whiteSpace: "pre" }}>
|
||||
{lineElems(lines[i])}
|
||||
</Typography>,
|
||||
);
|
||||
}
|
||||
|
||||
return <>{elems}</>;
|
||||
|
||||
Reference in New Issue
Block a user