From 74ca3f7828f22f6de64e8a2938318b16467cc235 Mon Sep 17 00:00:00 2001 From: Sean Kelly Date: Sun, 28 Apr 2024 21:30:54 -0700 Subject: [PATCH] Remove bad part --- web/src/components/graph/SystemGraph.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/web/src/components/graph/SystemGraph.tsx b/web/src/components/graph/SystemGraph.tsx index bb00394bb..c9676d7b6 100644 --- a/web/src/components/graph/SystemGraph.tsx +++ b/web/src/components/graph/SystemGraph.tsx @@ -126,7 +126,6 @@ export function ThresholdBarGraph({ formatter: (val: number) => `${Math.ceil(val)}${unit}`, }, min: 0, - stepSize: unit === "%" ? 5 : undefined, }, } as ApexCharts.ApexOptions; }, [graphId, threshold, unit, systemTheme, theme, formatTime]); @@ -369,7 +368,6 @@ export function CameraLineGraph({ formatter: (val: number) => `${Math.ceil(val)}${unit}`, }, min: 0, - stepSize: unit === "%" ? 5 : undefined, }, } as ApexCharts.ApexOptions; }, [graphId, systemTheme, theme, formatTime]);