mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-21 00:32:51 +02:00
fix sleeve memory bug
This commit is contained in:
@@ -22,8 +22,7 @@ export function StatsTable(rows: any[][], title?: string): React.ReactElement {
|
||||
<tr key={row[0]}>
|
||||
{row.map((elem: any, i: number) => {
|
||||
let style = {};
|
||||
if (i !== 0)
|
||||
style = { textAlign: "right", paddingLeft: ".25em" };
|
||||
if (i !== 0) style = { textAlign: "right", paddingLeft: ".25em" };
|
||||
return (
|
||||
<td key={i} style={style}>
|
||||
{elem}
|
||||
|
||||
Reference in New Issue
Block a user