File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
services/static-webserver/client/source/class/osparc/desktop/wallets Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 ( ) ;
You can’t perform that action at this time.
0 commit comments