forked from Github/frigate
Support TiB in storage calculation (#8142)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user