Skip to content
Snippets Groups Projects
Verified Commit 12f36705 authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Fixed error in js

parent 4c2730bc
No related branches found
No related tags found
No related merge requests found
...@@ -16,7 +16,7 @@ export default { ...@@ -16,7 +16,7 @@ export default {
durationFormatted (v) { durationFormatted (v) {
let duration = parseInt(v) let duration = parseInt(v)
if (duration % 1 !== 0) { if (duration % 1 !== 0) {
return time.parse(0) return this.parse(0)
} }
duration = Math.round(duration) duration = Math.round(duration)
return this.parse(duration) return this.parse(duration)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment