[AC-1612] Disabled access to the Organization Vault tab if the user only has access to assigned collections (#6140)

* [AC-1612] Disabled access to the Organization Vault tab if the user only has access to assigned collections

* [AC-1612] Fixed issue that prevented Manager users to access the Organizations tab
This commit is contained in:
Rui Tomé 2023-09-07 10:41:59 +01:00 committed by GitHub
parent 6f82a9914b
commit 86bdfaa7ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ export class Organization {
}
get canViewAllCollections() {
return this.canCreateNewCollections || this.canEditAnyCollection || this.canDeleteAnyCollection;
return this.canEditAnyCollection || this.canDeleteAnyCollection;
}
get canEditAssignedCollections() {