From aa9703509d5a5eae01966b734ee25317d611cf9d Mon Sep 17 00:00:00 2001 From: Saairam Venkatesh <46614118+SaaiVenkat@users.noreply.github.com> Date: Tue, 5 Mar 2024 08:07:59 -0600 Subject: [PATCH] fix(boxplot): correct issues where min, max, outlier values are displayed as NULL --- src/js/display.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/display.js b/src/js/display.js index a8eb14df2..de007a39a 100644 --- a/src/js/display.js +++ b/src/js/display.js @@ -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 {