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

Commit a5df908

Browse files
committed
fix: Reset filters not clearing type field #1292
1 parent a968abb commit a5df908

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/pages/component-viewer/token-table.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

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

0 commit comments

Comments
 (0)