From cd847bb90e507c12a43835d06cf729701ccff47b Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Fri, 24 Nov 2023 12:00:56 -0500 Subject: [PATCH] reset for subtracted seconds --- src/components/timer.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/timer.vue b/src/components/timer.vue index 226cb03..ba359fe 100644 --- a/src/components/timer.vue +++ b/src/components/timer.vue @@ -104,6 +104,7 @@ reset(event){ this.savedPreviousSeconds = 0; this.totalSeconds = 0; + this.secondsToSubtract = 0; }, setSecondsManually(){ this.totalSeconds = this.manualHours*60*60 + this.manualMinutes*60 + this.manualSeconds;