Avoid display quircks of duration
This commit is contained in:
parent
40d33ccc77
commit
97eab8e8de
|
@ -50,7 +50,12 @@ export default {
|
||||||
},
|
},
|
||||||
getters: {
|
getters: {
|
||||||
durationFormatted: state => {
|
durationFormatted: state => {
|
||||||
return time.parse(Math.round(state.duration))
|
let duration = parseInt(state.duration)
|
||||||
|
if (duration % 1 !== 0) {
|
||||||
|
return time.parse(0)
|
||||||
|
}
|
||||||
|
duration = Math.round(state.duration)
|
||||||
|
return time.parse(duration)
|
||||||
},
|
},
|
||||||
currentTimeFormatted: state => {
|
currentTimeFormatted: state => {
|
||||||
return time.parse(Math.round(state.currentTime))
|
return time.parse(Math.round(state.currentTime))
|
||||||
|
|
Loading…
Reference in New Issue