From 6cb881da55b22a4e71ef78dc84e5b2e3bed0bd0d Mon Sep 17 00:00:00 2001 From: Jouni Kantola Date: Sun, 31 Mar 2024 19:40:07 +0200 Subject: [PATCH] Hide break alert when session started --- resources/scripts/App.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/scripts/App.vue b/resources/scripts/App.vue index 5917a0c..9b014fc 100644 --- a/resources/scripts/App.vue +++ b/resources/scripts/App.vue @@ -160,6 +160,7 @@ async function start() { if (isPaused || timer.value?.isRunning) return false; startButtonText.value = "Pause"; + information.value = ""; timer.value = startTimer(intervalLength.value, onTick, onEnd);