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

restored tw-w-[278px] classes

This commit is contained in:
Maximilian Power
2025-03-26 19:58:47 +01:00
parent 26cddf7ddc
commit 534549461b

View File

@@ -37,9 +37,9 @@
<bit-table-scroll *ngIf="!(isLoading$ | async)" [dataSource]="dataSource" [rowSize]="53">
<ng-container header>
<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>
<th bitCell bitSortable="groupsCount" class="tw-w-[278px]">{{ "groups" | i18n }}</th>
<th bitCell bitSortable="collectionsCount" class="tw-w-[278px]">{{ "collections" | i18n }}</th>
<th bitCell bitSortable="itemsCount" class="tw-w-[278px]">{{ "items" | i18n }}</th>
</ng-container>
<ng-template bitRowDef let-row>
<td bitCell>
@@ -56,8 +56,8 @@
</div>
</div>
</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>
<td bitCell class="tw-text-muted tw-w-[278px]">{{ row.groupsCount }}</td>
<td bitCell class="tw-text-muted tw-w-[278px]">{{ row.collectionsCount }}</td>
<td bitCell class="tw-text-muted tw-w-[278px]">{{ row.itemsCount }}</td>
</ng-template>
</bit-table-scroll>