diff --git a/frontend/src/business/components/settings/workspace/template/CustomFieldEdit.vue b/frontend/src/business/components/settings/workspace/template/CustomFieldEdit.vue index 24e7a430a5..da07587cd9 100644 --- a/frontend/src/business/components/settings/workspace/template/CustomFieldEdit.vue +++ b/frontend/src/business/components/settings/workspace/template/CustomFieldEdit.vue @@ -45,7 +45,7 @@ prop="options" :label-width="labelWidth"> diff --git a/frontend/src/business/components/track/plan/components/TestPlanList.vue b/frontend/src/business/components/track/plan/components/TestPlanList.vue index 3c7857e761..dcf8d6bab1 100644 --- a/frontend/src/business/components/track/plan/components/TestPlanList.vue +++ b/frontend/src/business/components/track/plan/components/TestPlanList.vue @@ -383,6 +383,14 @@ export default { this.condition.orders = getLastTableSortField(this.tableHeaderKey); getPlanStageOption((data) => { this.stageOption = data; + if (this.stageOption.length > 0) { + this.stageFilters = this.stageOption; + this.stageFilters.forEach((stage) => { + if (stage.system != null && stage.system) { + stage.text = this.$t(stage.text); + } + }) + } }); this.initTableData(); },