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

@@ -1,14 +1,7 @@
import { useTheme } from "@/context/theme-provider";
import { useEffect, useMemo } from "react";
import Chart from "react-apexcharts";
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`;
};
import { getUnitSize } from "@/utils/storageUtil";
type StorageGraphProps = {
graphId: string;