[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:
parent
6f82a9914b
commit
86bdfaa7ba
|
@ -174,7 +174,7 @@ export class Organization {
|
||||||
}
|
}
|
||||||
|
|
||||||
get canViewAllCollections() {
|
get canViewAllCollections() {
|
||||||
return this.canCreateNewCollections || this.canEditAnyCollection || this.canDeleteAnyCollection;
|
return this.canEditAnyCollection || this.canDeleteAnyCollection;
|
||||||
}
|
}
|
||||||
|
|
||||||
get canEditAssignedCollections() {
|
get canEditAssignedCollections() {
|
||||||
|
|
Loading…
Reference in New Issue