Rearrange admin panel to reduce clutter

This commit is contained in:
2024-04-22 22:57:18 +02:00
parent 58e4507f16
commit cf0494d29c
2 changed files with 58 additions and 54 deletions

View File

@@ -28,7 +28,7 @@ export const formatDataVolume = (amt, precision) => {
} else if (amt >= 1e3-1) {
return (amt/1e3).toPrecision(precision) + " kB";
}
return amt + " B"
return amt.toPrecision(precision) + " B"
}
export const formatDataVolumeBits = (amt, precision) => {
amt = amt*8