修复响应时间断言输入框在删光字符后消失的bug

This commit is contained in:
q4speed 2020-06-09 15:18:12 +08:00
parent d46a622f82
commit bc5f527364
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@
computed: { computed: {
isShow() { isShow() {
let rt = this.assertions.duration; let rt = this.assertions.duration;
return rt.value !== null && rt.value > 0; return rt.value !== undefined;
} }
} }
} }