Skip to content

Commit

Permalink
修正sql审核-sql上线页面工单状态显示不正确问题
Browse files Browse the repository at this point in the history
  • Loading branch information
yzypals committed May 7, 2019
1 parent 3b53431 commit e0e57e2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion common/static/dist/js/formatter.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,11 @@ function sqlworkflowStatus_formatter(value) {
else if (value === "workflow_exception") {
return "<span class=\"label label-danger\">" + gettext(value) + "</span>"
}
else if (value === "workflow_finish_manual") {
return "<span class=\"label label-success\">" + gettext(value) + "</span>"
}
else {
return "<span class=\"label label-danger\">" + "未知状态" + "</span>"
return "<span class=\"label label-success\">" + "未知状态" + "</span>"
}
}

Expand Down

0 comments on commit e0e57e2

Please sign in to comment.