diff --git a/frontend/src/business/components/track/plan/components/TestPlanList.vue b/frontend/src/business/components/track/plan/components/TestPlanList.vue index 5583dfe06f..640f5f0c87 100644 --- a/frontend/src/business/components/track/plan/components/TestPlanList.vue +++ b/frontend/src/business/components/track/plan/components/TestPlanList.vue @@ -569,7 +569,6 @@ export default { } this.$post('/test/plan/edit/follows/' + row.id, row.follows,() => { this.$success(this.$t('commons.cancel_follow_success')); - this.initTableData(); }); return } @@ -581,7 +580,6 @@ export default { row.follows.push(this.currentUser().id); this.$post('/test/plan/edit/follows/' + row.id, row.follows,() => { this.$success(this.$t('commons.follow_success')); - this.initTableData(); }); return } diff --git a/frontend/src/business/components/track/review/components/TestCaseReviewList.vue b/frontend/src/business/components/track/review/components/TestCaseReviewList.vue index 0de2fc36d5..f2df7e04b6 100644 --- a/frontend/src/business/components/track/review/components/TestCaseReviewList.vue +++ b/frontend/src/business/components/track/review/components/TestCaseReviewList.vue @@ -319,7 +319,6 @@ export default { param.followIds = row.followIds this.$post('/test/case/review/edit/follows', param,() => { this.$success(this.$t('commons.cancel_follow_success')); - this.initTableData(); }); return } @@ -332,7 +331,6 @@ export default { param.followIds = row.followIds this.$post('/test/case/review/edit/follows', param,() => { this.$success(this.$t('commons.follow_success')); - this.initTableData(); }); } }