Skip to content
This repository has been archived by the owner on Dec 18, 2024. It is now read-only.

Commit

Permalink
fix: Reset filters not clearing type field #1292
Browse files Browse the repository at this point in the history
  • Loading branch information
martinboue committed Nov 26, 2024
1 parent a968abb commit a5df908
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/pages/component-viewer/token-table.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<mat-form-field subscriptSizing="dynamic" appearance="outline">
<mat-label>Filter by type</mat-label>
<mat-select (selectionChange)="typeFilter.set($event.value)">
<mat-select [value]="typeFilter()" (selectionChange)="typeFilter.set($event.value)">
@for (type of types; track $index) {
<mat-option [value]="type">{{type | titlecase}}</mat-option>
}
Expand Down

0 comments on commit a5df908

Please sign in to comment.