Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
caoyingjunz committed Sep 29, 2024
1 parent fc0746a commit 736eb44
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/utils/formatter.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -356,8 +356,10 @@ const formatterNodeStatus = (row, column, cellValue) => {
let status = '已停止';
for (let condition of cellValue.conditions) {
if (condition.type === "Ready") {
status = "运行中"
break
if (condition.status === "True") {
status = "运行中"
break
}
}
}

Expand Down

0 comments on commit 736eb44

Please sign in to comment.