changing the column label
This commit is contained in:
parent
5f44cf6f09
commit
92114bb22c
1 changed files with 5 additions and 5 deletions
|
|
@ -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 */}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue