luci-mod-network: change to non-breaking space character

Closes #7252

Thanks to @efahl

Signed-off-by: Paul Donald <newtwen+github@gmail.com>
pull/5672/merge
Paul Donald 2024-09-20 17:49:07 +02:00
parent 8449716ceb
commit a2c21a62c9
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ function render_signal_badge(signalPercent, signalValue, noiseValue, wrap, mode)
}
if (noiseValue != null && noiseValue != 0) {
value = '---/%d\x0a%s'.format(noiseValue, _('dBm'));
value = '---/%d\xa0%s'.format(noiseValue, _('dBm'));
title = '%s / %s: %d %s'.format(title, _('Noise'), noiseValue, _('dBm'));
}
else {