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 {
durationFormatted (v) {
let duration = parseInt(v)
if (duration % 1 !== 0) {
return time.parse(0)
return this.parse(0)
}
duration = Math.round(duration)
return this.parse(duration)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment