mirror of
https://codeberg.org/emersion/gamja.git
synced 2024-12-12 08:51:13 -05:00
Fix tag name typo in the Timestamp component
This commit is contained in:
parent
62895d59ff
commit
4d988c98d0
1 changed files with 1 additions and 1 deletions
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue