mirror of
https://codeberg.org/emersion/gamja.git
synced 2025-01-06 04:42:16 -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) {
|
if (showSeconds) {
|
||||||
timestamp += ":--";
|
timestamp += ":--";
|
||||||
}
|
}
|
||||||
return html`<spam class="timestamp">${timestamp}</span>`;
|
return html`<span class="timestamp">${timestamp}</span>`;
|
||||||
}
|
}
|
||||||
|
|
||||||
let hh = date.getHours().toString().padStart(2, "0");
|
let hh = date.getHours().toString().padStart(2, "0");
|
||||||
|
|
Loading…
Reference in a new issue