Browse Source

Fix a typo in public.js (double semicolons) (#4269)

Signed-off-by: Cygnan <mail@cygnan.com>
pull/4/head
Cygnan 6 years ago
committed by Eugen Rochko
parent
commit
bc1f9dc24b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/javascript/packs/public.js

+ 1
- 1
app/javascript/packs/public.js View File

@ -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…
Cancel
Save