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.
1 parent 0bd93cb commit 5061495Copy full SHA for 5061495
services/static-webserver/client/source/class/osparc/data/model/Workbench.js
@@ -794,9 +794,13 @@ qx.Class.define("osparc.data.model.Workbench", {
794
// the node was removed
795
return;
796
}
797
-
798
// use the node data that was used to check the diffs
799
const nodeData = workbenchSource[nodeId];
+ if (!nodeData) {
800
+ // skip if nodeData is undefined or null
801
+ return;
802
+ }
803
+
804
let patchData = {};
805
if (workbenchDiffs[nodeId] instanceof Array) {
806
// if workbenchDiffs is an array means that the node was added
0 commit comments