1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-21 11:35:34 +01:00

Swapped hardcoded string with the localization ones on MemberAccessReportComponent (#10186)

This commit is contained in:
aj-rosado 2024-07-22 11:31:59 +01:00 committed by GitHub
parent b2d4d1bec2
commit fdbb1a903d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -20,10 +20,10 @@
<bit-table [dataSource]="dataSource" class="tw-mt-2">
<ng-container header>
<tr>
<th bitCell bitSortable="name" default>Members</th>
<th bitCell bitSortable="groupsCount">Groups</th>
<th bitCell bitSortable="collectionsCount">Collections</th>
<th bitCell bitSortable="itemsCount">Items</th>
<th bitCell bitSortable="name" default>{{ "members" | i18n }}</th>
<th bitCell bitSortable="groupsCount">{{ "groups" | i18n }}</th>
<th bitCell bitSortable="collectionsCount">{{ "collections" | i18n }}</th>
<th bitCell bitSortable="itemsCount">{{ "items" | i18n }}</th>
</tr>
</ng-container>
<ng-template body let-rows$>