1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2025-12-15 06:53:07 +01:00

intermediate: cibuild for nodemcu

This commit is contained in:
andreas
2023-10-06 21:36:20 +02:00
parent 10058cfeec
commit 82c98eec15
4 changed files with 109 additions and 14 deletions

View File

@@ -22,7 +22,7 @@ const addEl = (type, clazz, parent, text) => {
el.classList.add(ce);
});
}
if (text) el.textContent = text;
if (text !== undefined) el.textContent = text;
if (parent) parent.appendChild(el);
return el;
}