Skip to content

Commit

Permalink
HPCC-32337 Don't color metrics with a std deviation == 0
Browse files Browse the repository at this point in the history
Signed-off-by: Gordon Smith <[email protected]>
  • Loading branch information
GordonSmith committed Sep 23, 2024
1 parent f993554 commit b154a72
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 ? undefined : row.__StdDevsSource, row];
}))
;
return this;
Expand Down

0 comments on commit b154a72

Please sign in to comment.