From 5f2d67848cda077edbde349ce07ed261ff743e3d Mon Sep 17 00:00:00 2001 From: Anso Date: Mon, 20 Apr 2026 08:34:45 -0400 Subject: [PATCH] fix(dashboard): remove peak indicator dot from CPU sparkline (#705) The dot on the CPU sparkline added visual noise without adding information beyond what the textual "peak X% @ HH:MM" label already conveys. Disable showPeak on the CPU Sparkline; the peak text label is preserved. --- frontend/src/components/dashboard/ResourceGauges.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/src/components/dashboard/ResourceGauges.tsx b/frontend/src/components/dashboard/ResourceGauges.tsx index f51f4939..04c7a429 100644 --- a/frontend/src/components/dashboard/ResourceGauges.tsx +++ b/frontend/src/components/dashboard/ResourceGauges.tsx @@ -88,8 +88,7 @@ export function ResourceGauges({ systemStats, cpuHistory, netHistory, historyEnd points={cpuHistory} stroke="var(--chart-1)" fill="var(--chart-1)" - peakColor="var(--chart-2)" - peakIndex={cpuPeakIndex >= 0 ? cpuPeakIndex : undefined} + showPeak={false} />