Prevent line break between power limit value and its unit ("%") and remove the space between "° C".

This commit is contained in:
Gerald 2023-07-31 19:52:36 +02:00
parent 1ae55252dd
commit 93999ade0f
3 changed files with 4 additions and 5 deletions

View file

@ -52,8 +52,7 @@ function ml(tagName, ...args) {
function nester(el, n) {
if (typeof n === "string") {
var t = document.createTextNode(n);
el.appendChild(t);
el.innerHTML = n;
} else if (n instanceof Array) {
for(var i = 0; i < n.length; i++) {
if (typeof n[i] === "string") {