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 53ce789 commit fc8120fCopy full SHA for fc8120f
services/static-webserver/client/source/class/osparc/store/Support.js
@@ -212,6 +212,10 @@ qx.Class.define("osparc.store.Support", {
212
callback = () => window.open(supportInfo["url"]);
213
break;
214
case "email":
215
+ if (osparc.store.Groups.getInstance().isSupportEnabled()) {
216
+ // if support is enabled, ignore the email option
217
+ return;
218
+ }
219
icon = "@FontAwesome5Solid/envelope/14";
220
callback = () => this.__openSendEmailFeedbackDialog(supportInfo["email"]);
221
0 commit comments