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 36d9543 commit 724334bCopy full SHA for 724334b
services/static-webserver/client/source/class/osparc/widget/NodeOptions.js
@@ -63,13 +63,14 @@ qx.Class.define("osparc.widget.NodeOptions", {
63
}
64
65
// Life Cycle
66
- if ((node.isUpdatable() || node.isDeprecated() || node.isRetired())) {
+ if (
67
+ node.isDynamic() &&
68
+ (node.isUpdatable() || node.isDeprecated() || node.isRetired())
69
+ ) {
70
const lifeCycleView = new osparc.node.LifeCycleView(node);
71
sections.push(lifeCycleView);
72
- if (node.isDynamic()) {
- showStartStopButton = true;
- }
73
+ showStartStopButton = true;
74
75
76
// Boot Options
0 commit comments