fix(mac): keep webchat boot dots

This commit is contained in:
Peter Steinberger
2025-12-12 15:01:20 +00:00
parent 19e7c708ce
commit 6b64039fcb
3 changed files with 36 additions and 3 deletions

View File

@@ -196364,7 +196364,7 @@ const logStatus = (msg) => {
try {
console.log(msg);
const el = document.getElementById("app");
if (el && !el.dataset.booted) el.textContent = msg;
if (el && !el.dataset.booted) el.dataset.status = msg;
} catch {}
};
const randomId = () => {