Update sleep timer modal to not show negative time remaining

This commit is contained in:
advplyr 2025-01-26 12:36:11 -06:00
parent 4b4a2b46c1
commit b6ab7dc8a7

View file

@ -85,6 +85,7 @@ export default {
return [5, 10, 15, 30, 45, 60, 90]
},
timeRemainingPretty() {
if (this.currentTime <= 0) return '0:00'
return this.$secondsToTimestamp(this.currentTime)
},
isIos() {