diff --git a/src/components/timer.vue b/src/components/timer.vue index 8d1023a..225a5a0 100644 --- a/src/components/timer.vue +++ b/src/components/timer.vue @@ -88,6 +88,7 @@ }, setSecondsManually(){ this.totalSeconds = this.manualHours*60*60 + this.manualMinutes*60 + this.manualSeconds; + this.savedPreviousSeconds = this.totalSeconds; window.localStorage.setItem('lastTotalSeconds', this.totalSeconds); } },