diff --git a/src/pages/04_flow-managment/MainPage.vue b/src/pages/04_flow-managment/MainPage.vue index 43ea95da..e1d87968 100644 --- a/src/pages/04_flow-managment/MainPage.vue +++ b/src/pages/04_flow-managment/MainPage.vue @@ -10,6 +10,7 @@ import { WorkflowTemplatePayload, } from 'src/stores/workflow-template/types'; import { useWorkflowTemplate } from 'src/stores/workflow-template'; +import { useNavigator } from 'src/stores/navigator'; import { dialog } from 'src/stores/utils'; import FloatingActionButton from 'components/FloatingActionButton.vue'; @@ -28,6 +29,7 @@ const { pageSize: workflowPageSize, pageMax: workflowPageMax, } = storeToRefs(workflowStore); +const navigatorStore = useNavigator(); const pageState = reactive({ hideStat: false, @@ -254,6 +256,9 @@ async function fetchWorkflowList() { } onMounted(async () => { + navigatorStore.current.title = 'flow.title'; + navigatorStore.current.path = [{ text: 'flow.caption', i18n: true }]; + await fetchWorkflowList(); });