1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

[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

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() {