From d8567ee5c6e6661bd637bdee273e997617bc7f40 Mon Sep 17 00:00:00 2001 From: Sean Kelly Date: Sun, 28 Apr 2024 22:30:45 -0700 Subject: [PATCH] Fix tooltip showing as undefined for first tick --- web/src/components/graph/SystemGraph.tsx | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/web/src/components/graph/SystemGraph.tsx b/web/src/components/graph/SystemGraph.tsx index 81db46e7b..a286abb80 100644 --- a/web/src/components/graph/SystemGraph.tsx +++ b/web/src/components/graph/SystemGraph.tsx @@ -37,10 +37,6 @@ export function ThresholdBarGraph({ const formatTime = useCallback( (val: unknown) => { - if (val == 1) { - return; - } - const date = new Date(updateTimes[Math.round(val as number) - 1] * 1000); return date.toLocaleTimeString([], { hour12: config?.ui.time_format != "24hour", @@ -111,8 +107,8 @@ export function ThresholdBarGraph({ tickPlacement: "on", labels: { rotate: 0, - offsetX: -18, formatter: formatTime, + offsetX: isMobileOnly ? -18 : 0, }, axisBorder: { show: false, @@ -302,10 +298,6 @@ export function CameraLineGraph({ const formatTime = useCallback( (val: unknown) => { - if (val == 1) { - return; - } - const date = new Date(updateTimes[Math.round(val as number)] * 1000); return date.toLocaleTimeString([], { hour12: config?.ui.time_format != "24hour",