Skip to content

Commit

Permalink
hotfix: Gitee#I8Y09C
Browse files Browse the repository at this point in the history
  • Loading branch information
getrebuild committed Jan 22, 2024
1 parent cf8d6b4 commit d22881b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ public JSONArray getBackSteps() {
LinkedList<String[]> set = new LinkedList<>();
while (currentNode != null) {
FlowNode node = flowParser.getNode(currentNode);
if (!FlowNode.TYPE_CC.equals(node.getType())) {
if (FlowNode.TYPE_APPROVER.equals(node.getType())) {
set.addFirst(new String[] { node.getNodeId(), node.getDataMap().getString("nodeName") });
}

Expand Down

0 comments on commit d22881b

Please sign in to comment.