From a2422e40ce285f4400ca5e63bae0979d39d7f488 Mon Sep 17 00:00:00 2001 From: Matthew Huntington Date: Sat, 24 Aug 2024 18:53:06 +0200 Subject: [PATCH] refresh status on session logged --- src/App.vue | 6 ++++-- src/components/status.vue | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/App.vue b/src/App.vue index b1f1280..d825bff 100644 --- a/src/App.vue +++ b/src/App.vue @@ -8,7 +8,8 @@ import Status from './components/status.vue' const currentWorkingCategoryID = ref(1) - const summaryRef = ref(null); + const summaryRef = ref(null) + const statusRef = ref(null) const updateCurrentWorkingCategoryID = (id) =>{ currentWorkingCategoryID.value = id @@ -16,6 +17,7 @@ const refreshPage = () => { summaryRef.value.loadData() + statusRef.value.loadData() } @@ -23,7 +25,7 @@