From b27eebeae3f7be31677085ce2fb79f044699cb8f Mon Sep 17 00:00:00 2001 From: chenjianxing Date: Wed, 15 Feb 2023 14:27:04 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=B5=8B=E8=AF=95=E8=B7=9F=E8=B8=AA):=20?= =?UTF-8?q?=E5=8A=9F=E8=83=BD=E7=94=A8=E4=BE=8B=E8=AF=84=E8=AE=BA=E4=B8=AD?= =?UTF-8?q?=E6=9C=89=E7=A9=BA=E7=99=BD=E8=AF=84=E8=AE=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --bug=1023024 --user=陈建星 【测试跟踪】功能用例,评审中的评论显示问题2个 https://www.tapd.cn/55049933/s/1335506 --- .../frontend/src/business/case/components/TestCaseEdit.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-track/frontend/src/business/case/components/TestCaseEdit.vue b/test-track/frontend/src/business/case/components/TestCaseEdit.vue index 817b6220f2..8373abbdcb 100644 --- a/test-track/frontend/src/business/case/components/TestCaseEdit.vue +++ b/test-track/frontend/src/business/case/components/TestCaseEdit.vue @@ -904,7 +904,7 @@ export default { this.loading = true; testCaseCommentList(this.caseId).then((res) => { this.loading = false; - this.comments = res.data; + this.comments = res.data.filter(comment => comment.description); }); }, showAll() {