mirror of
https://github.com/bitwarden/browser
synced 2025-12-23 03:33:54 +00:00
* [deps] Autofill: Update prettier to v3 * prettier formatting updates --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jonathan Prusik <jprusik@classynemesis.com>
12 lines
444 B
HTML
12 lines
444 B
HTML
<div class="tw-inline-flex tw-gap-2">
|
|
<ng-container *ngFor="let item of filteredItems; let last = last">
|
|
<span bitBadge [badgeType]="badgeType" [truncate]="truncate">
|
|
{{ item }}
|
|
</span>
|
|
<span class="tw-sr-only" *ngIf="!last || isFiltered">, </span>
|
|
</ng-container>
|
|
<span *ngIf="isFiltered" bitBadge [badgeType]="badgeType">
|
|
{{ "plusNMore" | i18n: (items.length - filteredItems.length).toString() }}
|
|
</span>
|
|
</div>
|