mirror of https://github.com/mastodon/mastodon
Fix a typo in public.js (double semicolons) (#4269)
Signed-off-by: Cygnan <mail@cygnan.com>
This commit is contained in:
parent
cdc349a2d1
commit
bc1f9dc24b
|
@ -35,7 +35,7 @@ function main() {
|
|||
|
||||
[].forEach.call(document.querySelectorAll('time.time-ago'), (content) => {
|
||||
const datetime = new Date(content.getAttribute('datetime'));
|
||||
content.textContent = relativeFormat.format(datetime);;
|
||||
content.textContent = relativeFormat.format(datetime);
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue