Skip to content

Commit b6faf1e

Browse files
committed
minors
1 parent ca29a3f commit b6faf1e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

services/static-webserver/client/source/class/osparc/node/LifeCycleView.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ qx.Class.define("osparc.node.LifeCycleView", {
119119
newData["version"] = latestCompatible["version"];
120120
}
121121
node.set(newData);
122+
const nodeId = node.getNodeId();
122123
node.fireDataEvent("projectDocumentChanged", [{
123124
"op": "replace",
124125
"path": `/workbench/${nodeId}/key`,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ qx.Class.define("osparc.workbench.WorkbenchUI", {
540540

541541
nodeUI.addListener("dbltap", e => {
542542
this.fireDataEvent("nodeSelected", nodeUI.getNodeId());
543-
if (nodeUI.getNode().canNodeStart()) {
543+
if (nodeUI.getNode().canNodeStart() && !nodeUI.getNode().getStudy().getDisableServiceAutoStart()) {
544544
nodeUI.getNode().requestStartNode();
545545
}
546546
e.stopPropagation();

0 commit comments

Comments
 (0)