fixed sorting Peak Height in cable estimator

This commit is contained in:
Carter 2025-05-30 14:16:29 -06:00
parent 7537c120b4
commit e35e699294

View file

@ -140,7 +140,7 @@ export default function CableEstimator() {
},
{
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>
},
{