From f320c296cc56eee9899fe0bb2df5dc55555ec9c8 Mon Sep 17 00:00:00 2001 From: shiziyuan9527 Date: Mon, 21 Jun 2021 11:03:55 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=B5=8B=E8=AF=95=E7=94=A8=E4=BE=8B):=20?= =?UTF-8?q?=E7=82=B9=E5=87=BB=E5=85=B3=E8=81=94=E7=BC=BA=E9=99=B7Tab?= =?UTF-8?q?=E6=8E=A7=E5=88=B6=E5=8F=B0=E6=8A=A5=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/track/case/components/TestCaseIssueRelate.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frontend/src/business/components/track/case/components/TestCaseIssueRelate.vue b/frontend/src/business/components/track/case/components/TestCaseIssueRelate.vue index 9047c31bce..f601051fc9 100644 --- a/frontend/src/business/components/track/case/components/TestCaseIssueRelate.vue +++ b/frontend/src/business/components/track/case/components/TestCaseIssueRelate.vue @@ -97,7 +97,10 @@ export default { }, methods: { getIssues() { - this.page.result = getIssuesByCaseId(this.caseId, this.page); + let result = getIssuesByCaseId(this.caseId, this.page); + if (result) { + this.page.result = result; + } }, appIssue() { if (!this.caseId) {