fix: incorrectly formatted total size on stats panel (#667)

This commit is contained in:
Alex Yancey
2025-02-13 23:30:53 -08:00
committed by GitHub
parent 403458f707
commit d2ac1146ac
+1 -1
View File
@@ -90,7 +90,7 @@ const StatsPanel = ({ selector }: { selector: OpSelector }) => {
dataKey="totalSizeBytes"
tickFormatter={(v) => formatBytes(v)}
/>
<Tooltip labelFormatter={(v) => formatDate(v as number)} />
<Tooltip labelFormatter={(v) => formatBytes(v as number)}/>
<Legend />
<Line
yAxisId="left"