Skip to content

Commit

Permalink
fix: Workflow execution conditions did not execute as expected
Browse files Browse the repository at this point in the history
  • Loading branch information
shaohuzhang1 committed Dec 26, 2024
1 parent efa73c8 commit 7c63fa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/application/flow/workflow_manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,7 @@ def get_next_node_list(self, current_node, current_node_result):
self.get_node_cls_by_id(edge.targetNodeId, self.get_up_node_id_list(edge.targetNodeId)))
else:
node_list.append(
self.get_node_cls_by_id(edge.targetNodeId, self.get_up_node_id_list(edge.targetNodeId)))
self.get_node_cls_by_id(edge.targetNodeId, [current_node.node.id]))
return node_list

def get_reference_field(self, node_id: str, fields: List[str]):
Expand Down

0 comments on commit 7c63fa3

Please sign in to comment.