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 c1a40a5 commit 91e6cadCopy full SHA for 91e6cad
services/static-webserver/client/source/class/osparc/workbench/NodeUI.js
@@ -315,7 +315,13 @@ qx.Class.define("osparc.workbench.NodeUI", {
315
});
316
this.resetThumbnail();
317
318
- this.__createContentLayout();
+ // make sure metadata is ready
319
+ if (this.getNode().getMetadata()) {
320
+ this.__createContentLayout();
321
+ } else {
322
+ this.getNode().addListenerOnce("changeMetadata", () => this.__createContentLayout(), this);
323
+ }
324
+ ;
325
},
326
327
__createContentLayout: function() {
0 commit comments