Skip to content

Commit

Permalink
Fix size column (#356)
Browse files Browse the repository at this point in the history
  • Loading branch information
shaldengeki authored Aug 5, 2024
1 parent c064e7b commit 3dfb581
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ const GameLogArchivesTable = ({gameLogArchives}: GameLogArchivesTableParams) =>
"Games": gameLogArchive.numGameLogs,
"Users": gameLogArchive.numUsers,
"Latest table": latestTableDescription,
"Size (MB)": Math.round((gameLogArchive.sizeBytes) / (1024 * 1024)),
"Size in MB": Math.round((gameLogArchive.sizeBytes) / (1024 * 1024)),
}
});
innerContent = (
<Table
cols={["Link", "Date", "Type", "Games", "Users", "Latest table", "Size, MB"]}
cols={["Link", "Date", "Type", "Games", "Users", "Latest table", "Size in MB"]}
rows={rows}
key="game-log-archives"
showFilters={false}
Expand Down

0 comments on commit 3dfb581

Please sign in to comment.