Skip to content

Commit

Permalink
fix(boxplot): correct min, max, outlier values (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
SaaiVenkat authored Mar 5, 2024
1 parent 99528d0 commit 89b2ebe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/display.js
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ class Display {
textTerse += ' ';
}
// val
if (plot.plotData[plotPos][sectionKey] != null && !isOutlier) {
if (plot.plotData[plotPos][sectionKey] == null && !isOutlier) {
textTerse += 'empty';
textVerbose += 'empty';
} else {
Expand Down

0 comments on commit 89b2ebe

Please sign in to comment.