From ddea612f3a88d9a10dfcf92075c05a04859eca98 Mon Sep 17 00:00:00 2001 From: Matthew Huntington Date: Sat, 21 Dec 2024 18:16:35 -0500 Subject: [PATCH] when timer runs, entire #timer section turns green, not just Timer component --- src/App.vue | 16 +++++++++++++++- src/components/timer.vue | 32 ++++++++++++-------------------- 2 files changed, 27 insertions(+), 21 deletions(-) diff --git a/src/App.vue b/src/App.vue index 3e4437c..a6437fa 100644 --- a/src/App.vue +++ b/src/App.vue @@ -9,6 +9,8 @@ const currentWorkingCategory = ref(null) const currentWorkingInstrument = ref(null) + const timerRunning = ref(false) + const micThresholdExceeded = ref(false) const summaryRef = ref(null) const statusRef = ref(null) const showCategoryRef = ref(null) @@ -34,13 +36,15 @@ + + diff --git a/src/components/timer.vue b/src/components/timer.vue index d75344a..f4927a1 100644 --- a/src/components/timer.vue +++ b/src/components/timer.vue @@ -1,5 +1,7 @@