Skip to content

Commit

Permalink
Merge pull request #19140 from GordonSmith/HPCC-32337-STDDEV_ZERO
Browse files Browse the repository at this point in the history
HPCC-32337 Don't color metrics with a std deviation == 0

Reviewed-By: Jeremy Clements <[email protected]>
Merged-by: Gavin Halliday <[email protected]>
  • Loading branch information
ghalliday authored Sep 25, 2024
2 parents 71c6b9b + 01f751d commit 7264b4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esp/src/src-react/components/Metrics.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ class TableEx extends Table {
row.__formattedProps[p] ??
row[p] ??
"";
}), row.__StdDevsSource, row];
}), row.__StdDevs === 0 ? "" : row.__StdDevsSource, row];
}))
;
return this;
Expand Down

0 comments on commit 7264b4f

Please sign in to comment.