Skip to content

Commit

Permalink
Reset for Types and Platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
csaudiodesign committed Nov 18, 2023
1 parent 9c6d87a commit e2ce913
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/app/components/deployments/deployment-filter.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,15 @@ import { DeploymentsDataSource } from './deployments-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 dataSource.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 type of dataSource.platformOptions" [value]="type">{{type}}</mat-option>
</mat-select>
</mat-form-field>
Expand Down

0 comments on commit e2ce913

Please sign in to comment.