mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-05 02:39:33 +02:00
19 lines
486 B
HTML
19 lines
486 B
HTML
<ng-select
|
|
[items]="items"
|
|
[groupBy]="groupBy"
|
|
[(ngModel)]="selectedId"
|
|
(ngModelChange)="onModelChange()"
|
|
[clearable]="clearable"
|
|
[searchable]="searchable"
|
|
|
|
bindLabel="label"
|
|
bindValue="id"
|
|
>
|
|
<ng-template ng-option-tmp let-item="item" let-index="index">
|
|
{{ item.label }}
|
|
<ng-container *ngIf="item.description">
|
|
<br>
|
|
<span [title]="item.description" class="text-muted">{{ item.description }}</span>
|
|
</ng-container>
|
|
</ng-template>
|
|
</ng-select>
|