Skip to content

Commit

Permalink
fix(boxplot): correct issues where min, max, outlier values are displ…
Browse files Browse the repository at this point in the history
…ayed as NULL
  • Loading branch information
SaaiVenkat authored and jooyoungseo committed Mar 5, 2024
1 parent 99528d0 commit aa97035
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 aa97035

Please sign in to comment.