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 f2175d1 commit 7aca0c0Copy full SHA for 7aca0c0
services/static-webserver/client/source/class/osparc/form/renderer/PropForm.js
@@ -323,13 +323,12 @@ qx.Class.define("osparc.form.renderer.PropForm", {
323
const paramsMenuBtn = this.__getParamsMenuButton(field.key);
324
paramsMenuBtn.exclude();
325
optionsMenu.add(paramsMenuBtn);
326
- const areParamsEnabled = osparc.utils.Utils.isDevelopmentPlatform();
327
[
328
newParamBtn,
329
paramsMenuBtn
330
].forEach(btn => {
331
studyUI.bind("mode", btn, "visibility", {
332
- converter: mode => mode === "workbench" && areParamsEnabled ? "visible" : "excluded"
+ converter: mode => mode === "workbench" ? "visible" : "excluded"
333
});
334
335
}
0 commit comments