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 7db7ba5 commit b2573d4Copy full SHA for b2573d4
services/static-webserver/client/source/class/osparc/data/model/Node.js
@@ -48,7 +48,6 @@ qx.Class.define("osparc.data.model.Node", {
48
construct: function(study, key, version, nodeId) {
49
this.base(arguments);
50
51
- this.setOutputs({});
52
this.__inputNodes = [];
53
this.__inputsRequired = [];
54
@@ -494,6 +493,8 @@ qx.Class.define("osparc.data.model.Node", {
494
493
}
495
if (metadata.outputs) {
496
this.setOutputs(metadata.outputs);
+ } else {
497
+ this.setOutputs({});
498
499
500
},
0 commit comments