Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 Update state when patching node #6970

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1049,7 +1049,13 @@ async def patch_project_node(
app, project_id
)

# 5. Notify project node update
# 5. Updates project states for user, if inputs have been changed
if "inputs" in _node_patch_exclude_unset:
updated_project = await add_project_states_for_user(
user_id=user_id, project=updated_project, is_template=False, app=app
)

# 6. Notify project node update
await notify_project_node_update(app, updated_project, node_id, errors=None)


Expand Down
Loading