mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
Fix rounding (#11147)
This commit is contained in:
parent
acf37f9920
commit
1c90f62ea5
@ -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`;
|
||||||
|
Loading…
Reference in New Issue
Block a user