Support TiB in storage calculation (#8142)

This commit is contained in:
Nicolas Mowen
2023-10-13 05:14:24 -06:00
committed by GitHub
parent dcafcc1320
commit 2379e6fd1b

View File

@@ -27,8 +27,9 @@ export default function Storage() {
const getUnitSize = (MB) => {
if (isNaN(MB) || MB < 0) return 'Invalid number';
if (MB < 1024) return `${MB} MiB`;
if (MB < 1048576) return `${(MB / 1024).toFixed(2)} GiB`;
return `${(MB / 1024).toFixed(2)} GiB`;
return `${(MB / 1048576).toFixed(2)} TiB`;
};
let storage_usage;