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 24f5a39 commit b8368a8Copy full SHA for b8368a8
services/static-webserver/client/source/class/osparc/store/Products.js
@@ -27,6 +27,13 @@ qx.Class.define("osparc.store.Products", {
27
__uiConfig: null,
28
29
fetchUiConfig: function() {
30
+ if (osparc.auth.Data.getInstance().isGuest()) {
31
+ return new Promise(resolve => {
32
+ this.__uiConfig = {};
33
+ resolve(this.__uiConfig);
34
+ });
35
+ }
36
+
37
return osparc.utils.Utils.fetchJSON("/resource/osparc/ui_config.json")
38
.then(uiConfig => {
39
const product = osparc.product.Utils.getProductName()
0 commit comments