aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/shared/shared-forms/select/select-channel.component.html
blob: b49fd36fab733553df320a6cd5ab388c0371f50a (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                   
                                                                 


                       
<ng-select
  [(ngModel)]="selectedId"
  (ngModelChange)="onModelChange()"
  [bindLabel]="bindLabel"
  [bindValue]="bindValue"
  [clearable]="clearable"
  [searchable]="searchable"
>
  <ng-option *ngFor="let channel of channels" [value]="channel.id">
    <img alt="" class="avatar me-1" [src]="channel.avatarPath" />
    {{ channel.label }}
  </ng-option>
</ng-select>