From 89b2ebee5c499e94ee56e4fb940da7dc3d002401 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 min, max, outlier values (#1) --- 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 a8eb14df..de007a39 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 {