Skip to content

Commit 4d8f5ed

Browse files
committed
minor
1 parent e0250c0 commit 4d8f5ed

File tree

1 file changed

+3
-3
lines changed
  • services/static-webserver/client/source/class/osparc/desktop/wallets

1 file changed

+3
-3
lines changed

services/static-webserver/client/source/class/osparc/desktop/wallets/MembersList.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -214,9 +214,9 @@ qx.Class.define("osparc.desktop.wallets.MembersList", {
214214
const potentialCollaborators = osparc.store.Groups.getInstance().getPotentialCollaborators(true);
215215
const canIWrite = wallet.getMyAccessRights()["write"];
216216
wallet.getAccessRights().forEach(accessRights => {
217-
const gid = accessRights["gid"];
218-
if (Object.prototype.hasOwnProperty.call(potentialCollaborators, parseInt(gid))) {
219-
const collab = potentialCollaborators[parseInt(gid)];
217+
const gid = parseInt(accessRights["gid"]);
218+
if (Object.prototype.hasOwnProperty.call(potentialCollaborators, gid)) {
219+
const collab = potentialCollaborators[gid];
220220
const collaborator = {};
221221
collaborator["groupId"] = collab.getGroupId();
222222
collaborator["thumbnail"] = collab.getThumbnail();

0 commit comments

Comments
 (0)