diff --git a/static/date.js b/static/date.js index ad261ed..1f6ca29 100644 --- a/static/date.js +++ b/static/date.js @@ -1,4 +1,5 @@ for (let el of document.querySelectorAll(".date-rfc3339")) { let date = new Date(Date.parse(el.textContent)); el.textContent = date.toLocaleString(); + el.classList.remove("date-rfc3339"); }