From 489ac39e7347d0cc62c546b221ce4caefe80d083 Mon Sep 17 00:00:00 2001 From: csawatzky Date: Thu, 5 Feb 2026 12:32:07 -0600 Subject: [PATCH] also putting the delta graph in the sensors section --- src/gate/GateGraphs.tsx | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/gate/GateGraphs.tsx b/src/gate/GateGraphs.tsx index 4f9c7fa..3ce5932 100644 --- a/src/gate/GateGraphs.tsx +++ b/src/gate/GateGraphs.tsx @@ -302,6 +302,7 @@ export default function GateGraphs(props: Props) { * @returns list of cards for the charts */ const sensorGraphs = () => { + const tempComp = compMap.get(tempChain) let graphs: JSX.Element[] = [] //pressure @@ -310,10 +311,13 @@ export default function GateGraphs(props: Props) { if(pressureComp && pressureReadings){ graphs.push(graphCard(pressureComp, pressureReadings)) } - // maybe also put the delta time graph here as well - + + if(tempComp){ + graphs.push( + + ) + } //T/H chain - let tempComp = compMap.get(tempChain) let tempReadings = compMeasurements.get(tempChain) if(tempComp && tempReadings){ graphs.push(graphCard(tempComp, tempReadings))