web-remote/src/app/components/search/search-options/search-options.component.html

9 lines
341 B
HTML

<mat-form-field >
<mat-select [(ngModel)]="selectedSearchOption" (selectionChange)="setSearchOption($event)" name="selectedSearchOption" [placeholder]="searchOptionsTitle">
<mat-option *ngFor="let option of searchOptions" name="searchOptions" [value]="option">
{{option}}
</mat-option>
</mat-select>
</mat-form-field>
<br>