19 lines
693 B
HTML
19 lines
693 B
HTML
<div class="search-content">
|
|
@if (teachers.length === 0) {
|
|
<app-data-spinner/>
|
|
} @else {
|
|
<mat-form-field color="accent" style="width: 100%;">
|
|
<input type="text" placeholder="Поиск..." matInput [formControl]="teacherControl" [matAutocomplete]="auto">
|
|
|
|
<mat-autocomplete #auto="matAutocomplete" (optionSelected)="onOptionSelected($event)"
|
|
[autoActiveFirstOption]="false" [hideSingleSelectionIndicator]="true">
|
|
@for (option of filteredTeachers | async; track option) {
|
|
<mat-option [value]="option.id">
|
|
{{ option.name }}
|
|
</mat-option>
|
|
}
|
|
</mat-autocomplete>
|
|
</mat-form-field>
|
|
}
|
|
</div>
|