From bc5f52736442c814c7cf029e1993e1df64fd35e0 Mon Sep 17 00:00:00 2001 From: q4speed Date: Tue, 9 Jun 2020 15:18:12 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=93=8D=E5=BA=94=E6=97=B6?= =?UTF-8?q?=E9=97=B4=E6=96=AD=E8=A8=80=E8=BE=93=E5=85=A5=E6=A1=86=E5=9C=A8?= =?UTF-8?q?=E5=88=A0=E5=85=89=E5=AD=97=E7=AC=A6=E5=90=8E=E6=B6=88=E5=A4=B1?= =?UTF-8?q?=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../api/test/components/assertion/ApiAssertionsEdit.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/business/components/api/test/components/assertion/ApiAssertionsEdit.vue b/frontend/src/business/components/api/test/components/assertion/ApiAssertionsEdit.vue index 1a4accc574..b615797a25 100644 --- a/frontend/src/business/components/api/test/components/assertion/ApiAssertionsEdit.vue +++ b/frontend/src/business/components/api/test/components/assertion/ApiAssertionsEdit.vue @@ -40,7 +40,7 @@ computed: { isShow() { let rt = this.assertions.duration; - return rt.value !== null && rt.value > 0; + return rt.value !== undefined; } } }