Skip to content

Commit

Permalink
luci-mod-network: change to non-breaking space character
Browse files Browse the repository at this point in the history
Closes openwrt#7252

Thanks to @efahl

Signed-off-by: Paul Donald <[email protected]>
  • Loading branch information
systemcrash committed Sep 20, 2024
1 parent 8449716 commit a2c21a6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit a2c21a6

Please sign in to comment.