From d2ac1146ac0d2d75ca7dc51c9db076adc7170000 Mon Sep 17 00:00:00 2001 From: Alex Yancey Date: Thu, 13 Feb 2025 23:30:53 -0800 Subject: [PATCH] fix: incorrectly formatted total size on stats panel (#667) --- webui/src/components/StatsPanel.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui/src/components/StatsPanel.tsx b/webui/src/components/StatsPanel.tsx index c5022381..3a0ee5a3 100644 --- a/webui/src/components/StatsPanel.tsx +++ b/webui/src/components/StatsPanel.tsx @@ -90,7 +90,7 @@ const StatsPanel = ({ selector }: { selector: OpSelector }) => { dataKey="totalSizeBytes" tickFormatter={(v) => formatBytes(v)} /> - formatDate(v as number)} /> + formatBytes(v as number)}/>