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