diff --git a/frontend/src/business/components/track/plan/components/TestPlanList.vue b/frontend/src/business/components/track/plan/components/TestPlanList.vue index 78e880fa38..9bf5712b5b 100644 --- a/frontend/src/business/components/track/plan/components/TestPlanList.vue +++ b/frontend/src/business/components/track/plan/components/TestPlanList.vue @@ -25,7 +25,24 @@ :label="$t('test_track.plan.plan_status')" show-overflow-tooltip> { + for (let i = 0; i < this.tableData.length; i++) { + if (this.tableData[i].id == param.id) { + this.tableData[i].status = param.status; + break; + } + } + }); + }, handleDelete(testPlan) { this.$alert(this.$t('test_track.plan.plan_delete_confirm') + testPlan.name + "?", '', { confirmButtonText: this.$t('commons.confirm'),