diff --git a/test-track/frontend/src/business/plan/view/comonents/functional/FunctionalRelevance.vue b/test-track/frontend/src/business/plan/view/comonents/functional/FunctionalRelevance.vue index a6e501ff15..32170b3e42 100644 --- a/test-track/frontend/src/business/plan/view/comonents/functional/FunctionalRelevance.vue +++ b/test-track/frontend/src/business/plan/view/comonents/functional/FunctionalRelevance.vue @@ -315,7 +315,7 @@ export default { } this.getProjectNodeForce(projectId, condition); }, - getProjectNodeForce(projectId, condition) { + getProjectNodeForce(projectId = this.projectId, condition = this.page.condition) { const index = this.projects.findIndex(project => project.id === projectId); if (index !== -1) { this.projectName = this.projects[index].name; diff --git a/test-track/frontend/src/business/plan/view/comonents/functional/TestPlanFunctionalRelevance.vue b/test-track/frontend/src/business/plan/view/comonents/functional/TestPlanFunctionalRelevance.vue index 19064904d0..038eb82b4c 100644 --- a/test-track/frontend/src/business/plan/view/comonents/functional/TestPlanFunctionalRelevance.vue +++ b/test-track/frontend/src/business/plan/view/comonents/functional/TestPlanFunctionalRelevance.vue @@ -65,6 +65,7 @@ export default { this.$success(this.$t("plan.relevance_case_success")); vueObj.setSelectCounts(0); this.$emit('refresh'); + this.$refs.functionalRelevance.getProjectNodeForce(); }).catch((error) => { vueObj.isSaving = false; });