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 e1f41dd commit 8f9cca7Copy full SHA for 8f9cca7
services/static-webserver/client/source/class/osparc/store/Products.js
@@ -133,7 +133,7 @@ qx.Class.define("osparc.store.Products", {
133
amIASupportUser: function() {
134
const supportGroupId = this.getSupportGroupId();
135
const groupsStore = osparc.store.Groups.getInstance();
136
- const myGroupIds = groupsStore.getOrganizationIds();
+ const myGroupIds = groupsStore.getOrganizationIds().map(gId => parseInt(gId));
137
return (supportGroupId && myGroupIds.includes(supportGroupId));
138
},
139
}
0 commit comments