Fix tag name typo in the Timestamp component

This commit is contained in:
Umar Getagazov 2024-11-28 12:37:51 +00:00
parent 62895d59ff
commit 4d988c98d0

View file

@ -43,7 +43,7 @@ function _Timestamp({ date, url, showSeconds }) {
if (showSeconds) {
timestamp += ":--";
}
return html`<spam class="timestamp">${timestamp}</span>`;
return html`<span class="timestamp">${timestamp}</span>`;
}
let hh = date.getHours().toString().padStart(2, "0");