1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-18 02:19:18 +00:00

PM-18607 reimplemented errorOnUnknownProperties (#18922)

* PM-18607 reimplemented errorOnUnknownProperties

* claude review

* claude review

---------

Co-authored-by: John Harrington <84741727+harr1424@users.noreply.github.com>
This commit is contained in:
bmbitwarden
2026-02-16 19:37:36 -05:00
committed by GitHub
parent 728eab3dab
commit ef786225c9
2 changed files with 1 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
<div *ngIf="canAccessPremium$ | async" role="toolbar" [ariaLabel]="'filters' | i18n">
<div *ngIf="canAccessPremium$ | async" role="toolbar" [attr.aria-label]="'filters' | i18n">
<form [formGroup]="filterForm" class="tw-flex tw-flex-wrap tw-gap-2 tw-mt-2">
<bit-chip-select
formControlName="sendType"

View File

@@ -54,8 +54,6 @@ describe("SendListFiltersComponent", () => {
{ provide: BillingAccountProfileStateService, useValue: billingAccountProfileStateService },
{ provide: AccountService, useValue: accountService },
],
// FIXME(PM-18598): Replace unknownElements and unknownProperties with actual imports
errorOnUnknownProperties: false,
}).compileComponents();
fixture = TestBed.createComponent(SendListFiltersComponent);