Skip to content

Commit 3a489b5

Browse files
authored
Merge branch 'master' into feature/render-unknown-service
2 parents f97bc1b + c5371bd commit 3a489b5

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

services/static-webserver/client/Manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"osparc/schedulerWorker.js",
2828
"svg/svg.js",
2929
"svg/svg.path.js",
30-
"jsondiffpatch/jsondiffpatch.min.js",
30+
"jsondiffpatch/jsondiffpatch-0.7.3.min.js",
3131
"jsontreeviewer/jsonTree.js",
3232
"marked/marked.min.js",
3333
"DOMPurify/purify.min.js"

services/static-webserver/client/source/class/osparc/wrapper/JsonDiffPatch.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ qx.Class.define("osparc.wrapper.JsonDiffPatch", {
5555

5656
init: function() {
5757
// initialize the script loading
58-
const jsondiffpatchPath = "jsondiffpatch/jsondiffpatch.min.js"; // own build required for the formatters to work
58+
const jsondiffpatchPath = "jsondiffpatch/jsondiffpatch-0.7.3.min.js"; // own build required for the formatters to work
5959
const dynLoader = new qx.util.DynamicScriptLoader([
6060
jsondiffpatchPath
6161
]);

services/static-webserver/client/source/resource/jsondiffpatch/jsondiffpatch.min.js renamed to services/static-webserver/client/source/resource/jsondiffpatch/jsondiffpatch-0.7.3.min.js

File renamed without changes.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def _replace_uuids(node: str | list | dict) -> str | list | dict:
9494
)
9595

9696
# exclude annotations UI info for conversations done in the source project
97-
annotations = project_copy.get("ui", {}).get("annotations", {}).copy()
97+
annotations = deepcopy(project_copy.get("ui", {}).get("annotations", {})) or {}
9898
for ann_id, ann in annotations.items():
9999
if ann["type"] == "conversation":
100100
project_copy["ui"]["annotations"].pop(ann_id)

0 commit comments

Comments
 (0)