Skip to content

Commit 825c837

Browse files
committed
minors
1 parent 0c3b7bf commit 825c837

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

services/static-webserver/client/source/class/osparc/desktop/StudyEditor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,7 @@ qx.Class.define("osparc.desktop.StudyEditor", {
722722
this.__workbenchView.showPipeline();
723723
} else {
724724
const currentNodeId = this.getStudy().getUi().getCurrentNodeId();
725-
if (currentNodeId) {
725+
if (currentNodeId && this.getStudy().getWorkbench().getNode(currentNodeId)) {
726726
const node = this.getStudy().getWorkbench().getNode(currentNodeId);
727727
if (node && node.isDynamic()) {
728728
this.__workbenchView.fullscreenNode(currentNodeId);

services/static-webserver/client/source/class/osparc/widget/ProgressSequence.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ qx.Class.define("osparc.widget.ProgressSequence", {
2525

2626
this.set({
2727
backgroundColor: "window-popup-background",
28-
paddingBottom: 8
28+
paddingBottom: 8,
29+
minWidth: 400,
2930
});
3031

3132
this.__initLayout(title);

0 commit comments

Comments
 (0)