From 137bb3a4c28fd154a46ab295c60bc0eef7d55701 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 10 Jul 2018 08:42:15 -0400 Subject: [PATCH] allow removeal of accessall users on groups --- src/app/organizations/manage/entity-users.component.html | 2 +- src/app/organizations/manage/entity-users.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/organizations/manage/entity-users.component.html b/src/app/organizations/manage/entity-users.component.html index 5b2e6085b3..d602d4bd5c 100644 --- a/src/app/organizations/manage/entity-users.component.html +++ b/src/app/organizations/manage/entity-users.component.html @@ -40,7 +40,7 @@ diff --git a/src/app/organizations/manage/entity-users.component.ts b/src/app/organizations/manage/entity-users.component.ts index 242c12ba0d..906040dea6 100644 --- a/src/app/organizations/manage/entity-users.component.ts +++ b/src/app/organizations/manage/entity-users.component.ts @@ -58,7 +58,7 @@ export class EntityUsersComponent implements OnInit { } async remove(user: any) { - if (this.actionPromise != null || user.accessAll) { + if (this.actionPromise != null || (this.entity === 'collection' && user.accessAll)) { return; }