Skip to content

Commit

Permalink
Merge pull request #119 from pyiron/node_status_fix
Browse files Browse the repository at this point in the history
Fix node status
  • Loading branch information
Tara-Lakshmipathy authored Mar 12, 2025
2 parents cd43a84 + 8869eaa commit 5e47d42
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pyironflow/reactflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ def handle(self, widget: 'PyironFlowWidget'):
widget.select_output_widget()
widget.out_widget.clear_output()
widget.display_return_value(widget.wf.run)
widget.update_status()

case GlobalCommand.SAVE:
widget.select_output_widget()
Expand Down Expand Up @@ -285,6 +286,7 @@ def on_value_change(self, change):
print(f"Could not run node {node_name}!")
else:
self.display_return_value(node.pull)
self.update_status()
case "delete_node":
self.wf.remove_child(node_name)
case command:
Expand Down

0 comments on commit 5e47d42

Please sign in to comment.