Skip to content

Commit 8ee52fa

Browse files
committed
minor
1 parent b01ecba commit 8ee52fa

File tree

1 file changed

+3
-1
lines changed
  • services/static-webserver/client/source/class/osparc/workbench

1 file changed

+3
-1
lines changed

services/static-webserver/client/source/class/osparc/workbench/WorkbenchUI.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1070,7 +1070,9 @@ qx.Class.define("osparc.workbench.WorkbenchUI", {
10701070

10711071
clearNode(nodeId) {
10721072
const nodeUI = this.getNodeUI(nodeId);
1073-
this.__clearNodeUI(nodeUI);
1073+
if (nodeUI) {
1074+
this.__clearNodeUI(nodeUI);
1075+
}
10741076
},
10751077

10761078
clearEdge: function(edgeId) {

0 commit comments

Comments
 (0)