Fixed spacing with non-breaking spaces issue

This commit is contained in:
Lloyd McKenzie 2022-01-10 12:41:54 -07:00
parent 86c3609288
commit d5ed9eefbd
1 changed files with 1 additions and 1 deletions

View File

@ -1181,7 +1181,7 @@ public class DataRenderer extends Renderer {
String high = displayQuantity(q.getHigh());
if (high.isEmpty())
high = "?";
b.append(low).append("\u00A0 to \u00A0").append(high);
b.append(low).append("\u00A0to\u00A0").append(high);
return b.toString();
}