Add camera bandwidth back in storage metrics (#13436)

This commit is contained in:
Josh Hawkins
2024-08-30 08:11:54 -05:00
committed by GitHub
parent cf7718132a
commit 4ec136cab0
3 changed files with 15 additions and 9 deletions

View File

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