summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-mod-network/htdocs/luci-static/resources
diff options
context:
space:
mode:
authorPaul Donald <newtwen+github@gmail.com>2024-09-20 17:49:07 +0200
committerPaul Donald <newtwen+github@gmail.com>2024-09-20 17:49:07 +0200
commita2c21a62c9cd10b61baa48f4881cd8794930e4ff (patch)
treeab6d81ebd401f9b1c74c2bbe06c7844a90592716 /modules/luci-mod-network/htdocs/luci-static/resources
parent8449716ceb0641c3f76f103fa52b8529013f2581 (diff)
luci-mod-network: change to non-breaking space character
Closes #7252 Thanks to @efahl Signed-off-by: Paul Donald <newtwen+github@gmail.com>
Diffstat (limited to 'modules/luci-mod-network/htdocs/luci-static/resources')
-rw-r--r--modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js
index 3efd07f7f4..cedf1675ff 100644
--- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js
+++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js
@@ -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 {