Avoid display quircks of duration

merge-requests/154/head
Eliot Berriot 2018-02-19 20:14:14 +01:00
rodzic 40d33ccc77
commit 97eab8e8de
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: DD6965E2476E5C27
1 zmienionych plików z 6 dodań i 1 usunięć

Wyświetl plik

@ -50,7 +50,12 @@ export default {
},
getters: {
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 => {
return time.parse(Math.round(state.currentTime))