mirror of
https://github.com/bitwarden/browser.git
synced 2025-03-13 13:49:37 +01:00
* update badge components so multiple badges to do not overlap with permissions column in collections
12 lines
449 B
HTML
12 lines
449 B
HTML
<div class="tw-inline-flex tw-flex-wrap tw-gap-2">
|
|
<ng-container *ngFor="let item of filteredItems; let last = last">
|
|
<span bitBadge [variant]="variant" [truncate]="truncate">
|
|
{{ item }}
|
|
</span>
|
|
<span class="tw-sr-only" *ngIf="!last || isFiltered">, </span>
|
|
</ng-container>
|
|
<span *ngIf="isFiltered" bitBadge [variant]="variant">
|
|
{{ "plusNMore" | i18n: (items.length - filteredItems.length).toString() }}
|
|
</span>
|
|
</div>
|