Skip to content

Commit

Permalink
Reset Type and Platform in node filter as well
Browse files Browse the repository at this point in the history
  • Loading branch information
csaudiodesign committed Nov 18, 2023
1 parent e2ce913 commit 33f63d1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/app/components/nodes/node-filter.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,15 @@ import { NodesDataSource } from './nodes-datasource';
<mat-form-field appearance="outline">
<mat-label>Type</mat-label>
<mat-select formControlName="type" panelClass="filter">
<mat-option>All Types</mat-option>
<mat-option *ngFor="let type of typeOptions" [value]="type">{{type}}</mat-option>
</mat-select>
</mat-form-field>
<!-- platform (select) -->
<mat-form-field appearance="outline">
<mat-label>Platform</mat-label>
<mat-select formControlName="platform" panelClass="filter">
<mat-option>All Platforms</mat-option>
<mat-option *ngFor="let platform of platformOptions" [value]="platform">{{platform}}</mat-option>
</mat-select>
</mat-form-field>
Expand Down

0 comments on commit 33f63d1

Please sign in to comment.