diff --git a/packages/editor-ui/src/components/MainHeader/MainHeader.vue b/packages/editor-ui/src/components/MainHeader/MainHeader.vue index 466c9f2ef3..7ab6a7a7c9 100644 --- a/packages/editor-ui/src/components/MainHeader/MainHeader.vue +++ b/packages/editor-ui/src/components/MainHeader/MainHeader.vue @@ -77,7 +77,7 @@ onMounted(async () => { }); function syncTabsWithRoute(to: RouteLocation, from?: RouteLocation): void { - if (to.name === VIEWS.WORKFLOW_EVALUATION) { + if (to.matched.some((record) => record.name === VIEWS.WORKFLOW_EVALUATION)) { activeHeaderTab.value = MAIN_HEADER_TABS.EVALUATION; } if ( diff --git a/packages/editor-ui/src/components/WorkflowEvaluation/ListEvaluation/EmptyState.vue b/packages/editor-ui/src/components/WorkflowEvaluation/ListEvaluation/EmptyState.vue index 7896764211..11461e017c 100644 --- a/packages/editor-ui/src/components/WorkflowEvaluation/ListEvaluation/EmptyState.vue +++ b/packages/editor-ui/src/components/WorkflowEvaluation/ListEvaluation/EmptyState.vue @@ -1,29 +1,33 @@ - + - Tests - + {{ $locale.baseText('workflowEvaluation.list.tests') }}