Skip to content

Commit 325608c

Browse files
fix model_dump
1 parent 661b5a5 commit 325608c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/web/server/src/simcore_service_webserver/projects/_projects_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1281,7 +1281,7 @@ async def patch_project_node(
12811281
if {"inputs", "outputs"} & _node_patch_exclude_unset.keys():
12821282
updated_project_with_states = await add_project_states_for_user(
12831283
user_id=user_id,
1284-
project=updated_project.model_dump(),
1284+
project=updated_project.model_dump(mode="json"),
12851285
is_template=False,
12861286
app=app,
12871287
)

0 commit comments

Comments
 (0)