У меня есть цикл ngFo, например
<mat-option *ngFor="let checklist of filterChecklist | async" [value]="checklist.checklistName" (click)="filterList(checklist.checklistName)">
<span>{{ checklist.checklistName }}</span>
</mat-option>
Я хочу добавить элемент сверху, например, «ВСЕ» или «Выбрать»
Мой код в .ts -
filterChecklist: any;
this.filterChecklist = this.dataSharingService.filters();
Выше, чем Retusn Observale
Как я могу это сделать, советую Plz.
Спасибо