changing the column label

This commit is contained in:
csawatzky 2026-02-03 16:20:43 -06:00
parent 5f44cf6f09
commit 92114bb22c

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>Conditioning:</Typography>
<Typography>Delta Temperature:</Typography>
{conditionDisplay(gate)}
</Box>
{/* taking these out for now because we are not sure if the customer wants them */}