Fix rounding

This commit is contained in:
Sean Kelly 2024-04-28 20:48:33 -07:00
parent 8c610bea49
commit 473f15abca

View File

@ -150,7 +150,7 @@ export function ThresholdBarGraph({
const getUnitSize = (MB: number) => { const getUnitSize = (MB: number) => {
if (isNaN(MB) || MB < 0) return "Invalid number"; if (isNaN(MB) || MB < 0) return "Invalid number";
if (MB < 1024) return `${MB} MiB`; if (MB < 1024) return `${MB.toFixed(2)} MiB`;
if (MB < 1048576) return `${(MB / 1024).toFixed(2)} GiB`; if (MB < 1048576) return `${(MB / 1024).toFixed(2)} GiB`;
return `${(MB / 1048576).toFixed(2)} TiB`; return `${(MB / 1048576).toFixed(2)} TiB`;