We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
null
1 parent 227bde0 commit d7156fbCopy full SHA for d7156fb
services/web/server/src/simcore_service_webserver/projects/utils.py
@@ -94,7 +94,7 @@ def _replace_uuids(node: str | list | dict) -> str | list | dict:
94
)
95
96
# exclude annotations UI info for conversations done in the source project
97
- annotations = project_copy.get("ui", {}).get("annotations", {}).copy()
+ annotations = deepcopy(project_copy.get("ui", {}).get("annotations", {})) or {}
98
for ann_id, ann in annotations.items():
99
if ann["type"] == "conversation":
100
project_copy["ui"]["annotations"].pop(ann_id)
0 commit comments