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 a73dfd9 commit c31f73fCopy full SHA for c31f73f
services/static-webserver/client/source/class/osparc/workbench/NodeUI.js
@@ -298,9 +298,11 @@ qx.Class.define("osparc.workbench.NodeUI", {
298
node.addListener("changeMarker", () => updateMarker());
299
updateMarker();
300
301
- node.getStudy().bind("pipelineRunning", this._deleteBtn, "enabled", {
302
- converter: running => !running
303
- });
+ if (node.getStudy()) {
+ node.getStudy().bind("pipelineRunning", this._deleteBtn, "enabled", {
+ converter: running => !running
304
+ });
305
+ }
306
307
const evaluateLifeCycleIcon = () => {
308
const deprecatedIcon = this.getChildControl("deprecated-icon");
0 commit comments