aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-forms/select/select-channel.component.html
blob: 897d13ee7a0f6a57aae85390735790cde3720ce5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<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
      class="avatar mr-1"
      [src]="channel.avatarPath"
    />
    {{ channel.label }}
  </ng-option>
</ng-select>