innertext -> innerhtml
All checks were successful
/ test (push) Successful in 32s

This commit is contained in:
Soph :3 2024-07-30 22:39:59 +03:00
parent 5f0ac7efdb
commit 19d4c280df
Signed by: sophie
GPG key ID: EDA5D222A0C270F2

View file

@ -37,7 +37,7 @@ interface LatestStatus {
h2.innerHTML += " - " + timeAgo(latestEntry.updated);
p.style.textAlign = "end";
p.innerText = latestEntry.status;
p.innerHTML = decodeURIComponent(latestEntry.status); // I trust status.cafe, and myself with the contents of this string.
statusElement.appendChild(h2);
statusElement.appendChild(p);