diff --git a/index.html b/index.html index cd9c587..e289bc7 100644 --- a/index.html +++ b/index.html @@ -3,9 +3,9 @@ - + - Hermione + Workflow diff --git a/src/layout/AppFooter.vue b/src/layout/AppFooter.vue index f7a0ccf..140aa4d 100644 --- a/src/layout/AppFooter.vue +++ b/src/layout/AppFooter.vue @@ -11,9 +11,9 @@ const logoUrl = computed(() => { diff --git a/src/layout/AppTopbar.vue b/src/layout/AppTopbar.vue index 6e5cd49..3bc2bef 100644 --- a/src/layout/AppTopbar.vue +++ b/src/layout/AppTopbar.vue @@ -5,6 +5,7 @@ import { useRouter } from 'vue-router'; import { LoadingStore } from '../stores/LoadingStore.js'; +import { ScenarioExecutionStore } from '../stores/ScenarioExecutionStore.js'; import { ScenarioStore } from '../stores/ScenarioStore.js'; import { UserPrefStore } from '../stores/UserPrefStore.js'; @@ -22,6 +23,7 @@ const router = useRouter(); const props = defineProps(['page']); const userPrefStore = UserPrefStore(); const scenario_store = ScenarioStore(); +const scenario_execution_store = ScenarioExecutionStore(); const loadingStore = LoadingStore() const selectedApp = ref(userPrefStore.getSelApp); @@ -35,6 +37,7 @@ async function updateApplication() { await userPrefStore.setSelectedApp(selectedApp.value); scenario_store.fetchApplicationScenarios(); + scenario_execution_store.fetchScenariosExecution(); } @@ -71,7 +74,7 @@ watch(() => userPrefStore.getSelApp, appUpdated, { immediate: true }); /> - HERMIONE + WORKFLOW diff --git a/src/views/pages/CiaScenarioExec.vue b/src/views/pages/CiaScenarioExec.vue index 78d60c1..9348bdc 100644 --- a/src/views/pages/CiaScenarioExec.vue +++ b/src/views/pages/CiaScenarioExec.vue @@ -64,7 +64,7 @@