1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-10 13:40:06 +00:00

fix for member-access-report columns

This commit is contained in:
Maximilian Power
2025-03-26 01:53:40 +01:00
parent f3a2649752
commit 9ab452b936

View File

@@ -34,20 +34,12 @@
<h2 bitTypography="h1">{{ "loading" | i18n }}</h2>
</div>
</ng-container>
<bit-table-scroll
*ngIf="!(isLoading$ | async)"
[dataSource]="dataSource"
[rowSize]="53"
class="tw-table tw-w-full table-hover table-list"
>
<bit-table-scroll *ngIf="!(isLoading$ | async)" [dataSource]="dataSource" [rowSize]="53">
<ng-container header>
<tr>
<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>
<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>
</ng-container>
<ng-template bitRowDef let-row>
<td bitCell>
@@ -64,8 +56,8 @@
</div>
</div>
</td>
<td bitCell class="tw-text-muted tw-w-[278px] tw-p-4">{{ row.groupsCount }}</td>
<td bitCell class="tw-text-muted tw-w-[278px] tw-p-4">{{ row.collectionsCount }}</td>
<td bitCell class="tw-text-muted tw-w-[278px] tw-p-4">{{ row.itemsCount }}</td>
<td bitCell class="tw-text-muted">{{ row.groupsCount }}</td>
<td bitCell class="tw-text-muted">{{ row.collectionsCount }}</td>
<td bitCell class="tw-text-muted">{{ row.itemsCount }}</td>
</ng-template>
</bit-table-scroll>