fixed sorting Peak Height in cable estimator
This commit is contained in:
parent
7537c120b4
commit
e35e699294
1 changed files with 1 additions and 1 deletions
|
|
@ -140,7 +140,7 @@ export default function CableEstimator() {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Peak Height" + (getDistanceUnit() === pond.DistanceUnit.DISTANCE_UNIT_FEET ? "(ft)" : "(m)"),
|
title: "Peak Height" + (getDistanceUnit() === pond.DistanceUnit.DISTANCE_UNIT_FEET ? "(ft)" : "(m)"),
|
||||||
sortKey: "PeakHeight",
|
sortKey: "Peak",
|
||||||
render: (row: jsonBin) => <Box padding={2}>{distanceConversion(row.Peak).toFixed(2)}</Box>
|
render: (row: jsonBin) => <Box padding={2}>{distanceConversion(row.Peak).toFixed(2)}</Box>
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue