From 99a6c57aceaaa418aa2edd679c34e334f5447b6a Mon Sep 17 00:00:00 2001 From: ellvix Date: Wed, 18 Dec 2024 21:48:03 -0700 Subject: [PATCH] fix: missing text in line verbose mode (#622) --- 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 4e5c3852..4b2c87cd 100644 --- a/src/js/display.js +++ b/src/js/display.js @@ -535,7 +535,7 @@ class Display { } verboseText += plot.pointValuesX[position.x] + ', '; if (plot.plotLegend) { - plot.plotLegend.y + ' is '; + verboseText += plot.plotLegend.y + ' is '; } verboseText += plot.pointValuesY[position.x];