From b503122a8a7ad2352aa631c10b2d6ed28bc58400 Mon Sep 17 00:00:00 2001 From: wenyann <64353056+wenyann@users.noreply.github.com> Date: Thu, 1 Apr 2021 15:54:10 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=B5=8B=E8=AF=95=E8=AF=84=E5=AE=A1tags?= =?UTF-8?q?=E3=80=81=E6=B5=8B=E8=AF=95=E8=AE=A1=E5=88=92tags):=20=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D=E6=B5=8B=E8=AF=95=E8=AF=84=E5=AE=A1=E6=B5=8B=E8=AF=95?= =?UTF-8?q?=E8=AE=A1=E5=88=92=E6=A0=87=E7=AD=BE=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/track/plan/components/TestPlanEdit.vue | 4 ++-- .../components/track/review/components/TestCaseReviewEdit.vue | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/business/components/track/plan/components/TestPlanEdit.vue b/frontend/src/business/components/track/plan/components/TestPlanEdit.vue index 995d24e258..1c4d6557e9 100644 --- a/frontend/src/business/components/track/plan/components/TestPlanEdit.vue +++ b/frontend/src/business/components/track/plan/components/TestPlanEdit.vue @@ -175,11 +175,11 @@ export default { Object.assign(tmp, testPlan); Object.assign(this.form, tmp); } else { - this.form.tags = [] + this.form.tags = []; } listenGoBack(this.close); this.dialogFormVisible = true; - this.reload() + this.reload(); }, testPlanInfo() { this.$refs['planFrom'].validate((valid) => { diff --git a/frontend/src/business/components/track/review/components/TestCaseReviewEdit.vue b/frontend/src/business/components/track/review/components/TestCaseReviewEdit.vue index 9649021f33..283d4b2263 100644 --- a/frontend/src/business/components/track/review/components/TestCaseReviewEdit.vue +++ b/frontend/src/business/components/track/review/components/TestCaseReviewEdit.vue @@ -155,11 +155,11 @@ export default { Object.assign(this.form, tmp); this.dbProjectIds = JSON.parse(JSON.stringify(this.form.projectIds)); } else { - this.form.tags = [] + this.form.tags = []; } listenGoBack(this.close); this.dialogFormVisible = true; - this.reload() + this.reload(); }, reviewInfo() {