fix debug
This commit is contained in:
parent
1b1c461c42
commit
4d0c50fee8
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ const formatDuration = function(seconds) {
|
|||
parseInt(seconds / 86400),
|
||||
parseInt(seconds % 86400 / 3600),
|
||||
parseInt(seconds % 3600 / 60),
|
||||
s = parseInt(seconds % 60)
|
||||
parseInt(seconds % 60)
|
||||
]
|
||||
return parts.map(p => { return p.toString().padStart(2, '0')}).join(':')
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue