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 1977626 commit 814f65cCopy full SHA for 814f65c
services/static-webserver/client/source/class/osparc/store/Groups.js
@@ -174,8 +174,9 @@ qx.Class.define("osparc.store.Groups", {
174
this.getMyGroupId(),
175
...this.getOrganizationIds().map(gId => parseInt(gId))
176
];
177
- if (this.getEveryoneProductGroup()) {
178
- allMyGroupIds.push(this.getEveryoneProductGroup().getGroupId());
+ const supportGroup = this.getSupportGroup();
+ if (supportGroup && !allMyGroupIds.includes(supportGroup.getGroupId())) {
179
+ allMyGroupIds.push(supportGroup.getGroupId());
180
}
181
if (this.getEveryoneGroup()) {
182
allMyGroupIds.push(this.getEveryoneGroup().getGroupId());
0 commit comments