We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c829d7 commit 3ad2eecCopy full SHA for 3ad2eec
services/static-webserver/client/source/class/osparc/node/slideshow/NodeView.js
@@ -38,6 +38,13 @@ qx.Class.define("osparc.node.slideshow.NodeView", {
38
39
statics: {
40
LOGGER_HEIGHT: 28,
41
+
42
+ isPropsFormShowable: function(node) {
43
+ if (node && ("getPropsForm" in node) && node.getPropsForm()) {
44
+ return node.getPropsForm().hasVisibleInputs();
45
+ }
46
+ return false;
47
+ },
48
},
49
50
members: {
@@ -128,7 +135,10 @@ qx.Class.define("osparc.node.slideshow.NodeView", {
128
135
129
136
130
137
isSettingsGroupShowable: function() {
131
- // do not show Settings in App Mode
138
+ const node = this.getNode();
139
+ if (node.isComputational()) {
140
+ return this.self().isPropsFormShowable(node);
141
132
142
return false;
133
143
134
144
0 commit comments