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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user