diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2025-06-19 14:03:17 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2025-06-19 14:45:17 +0200 |
commit | 0b9c39e12c3853ab20bcae373690e51e3cf73e4c (patch) | |
tree | e9f2a8ebade4984bf246a9b32ca4da94b7dae78a | |
parent | 5dae8a6f663efdb59cd42dd772f228773b29415b (diff) |
Use a regular no-break space U+00A0 as unit separator.
Instead of the narrow no-break space U+202F. It appears the former is
typographically correct.
-rw-r--r-- | main.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4586,7 +4586,7 @@ const disposePopover = (function() { return document.createTextNode(value); case 'number': if (unit != null) { - return document.createTextNode(formatNumberLocale.format(value) + '\u202F' + unit); + return document.createTextNode(formatNumberLocale.format(value) + '\u00A0' + unit); } return document.createTextNode(value.toString()); default: |