Merge branch 'staging_environment' into gate_delta_temp_graph

This commit is contained in:
csawatzky 2026-02-05 11:41:16 -06:00
commit a437e2aa55

View file

@ -195,9 +195,9 @@ export default function GateList(props: Props) {
) )
} }
const CtoF = (celsius: number) => { // const CtoF = (celsius: number) => {
return Math.round((celsius * (9 / 5) + 32) * 100) / 100; // return Math.round((celsius * (9 / 5) + 32) * 100) / 100;
}; // };
const desktopCols = (): Column<Gate>[] => { const desktopCols = (): Column<Gate>[] => {
return [ return [
@ -230,7 +230,7 @@ export default function GateList(props: Props) {
} }
}, },
{ {
title: "Conditioning", title: "Delta Temperature",
render: gate => { render: gate => {
return ( return (
<Box padding={2}> <Box padding={2}>
@ -311,7 +311,7 @@ export default function GateList(props: Props) {
<Typography>{terminalMap.get(gate.terminal()) ?? "None"}</Typography> <Typography>{terminalMap.get(gate.terminal()) ?? "None"}</Typography>
</Box> </Box>
<Box padding={2} display="flex" flexDirection="row" justifyContent="space-between"> <Box padding={2} display="flex" flexDirection="row" justifyContent="space-between">
<Typography>Delta Temp:</Typography> <Typography>Delta Temperature:</Typography>
{conditionDisplay(gate)} {conditionDisplay(gate)}
</Box> </Box>
{/* taking these out for now because we are not sure if the customer wants them */} {/* taking these out for now because we are not sure if the customer wants them */}