fix(任务中心): 修复性能测试报告不能跳转问题

This commit is contained in:
fit2-zhao 2021-07-01 11:17:22 +08:00 committed by fit2-zhao
parent 98d106e6d6
commit 3537b54bdd
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ export default {
let status = row.executionStatus;
if (status) {
status = row.executionStatus.toLowerCase();
if (status === 'Saved' || status === 'Completed' || status === 'success' || status === 'error') {
if (status === 'saved' || status === 'completed' || status === 'success' || status === 'error') {
this.taskVisible = false;
switch (row.executionModule) {
case "SCENARIO":