1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-23 19:53:43 +00:00

fix: incorrect text on access selector column header, refs AC-2245 (#8103)

This commit is contained in:
Vincent Salucci
2024-02-27 10:11:45 -06:00
committed by GitHub
parent 07bdbacbb2
commit e9eab08191
3 changed files with 13 additions and 7 deletions

View File

@@ -65,7 +65,10 @@
</bit-tab>
<bit-tab label="{{ 'access' | i18n }}">
<div class="tw-mb-3" *ngIf="organization.flexibleCollections">
{{ "grantCollectionAccess" | i18n }}
<span *ngIf="organization.useGroups">{{ "grantCollectionAccess" | i18n }}</span>
<span *ngIf="!organization.useGroups">{{
"grantCollectionAccessMembersOnly" | i18n
}}</span>
<span
*ngIf="
(flexibleCollectionsV1Enabled$ | async) &&
@@ -85,7 +88,7 @@
[permissionMode]="PermissionMode.Edit"
formControlName="access"
[items]="accessItems"
[columnHeader]="'groupAndMemberColumnHeader' | i18n"
[columnHeader]="'groupSlashMemberColumnHeader' | i18n"
[selectorLabelText]="'selectGroupsAndMembers' | i18n"
[selectorHelpText]="'userPermissionOverrideHelper' | i18n"
[emptySelectionText]="'noMembersOrGroupsAdded' | i18n"