aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-forms/select/select-custom-input.component.html
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2020-12-14 16:31:10 +0100
committerRigel Kent <sendmemail@rigelk.eu>2020-12-14 16:31:14 +0100
commit728a1236aece26bce6452c440cf85622548afab9 (patch)
treec9bfcb0261ec845af199e95be3d7087bf68d7170 /client/src/app/shared/shared-forms/select/select-custom-input.component.html
parent113d4a3f734de815b1565b892dcd9b41a9e283e6 (diff)
downloadPeerTube-728a1236aece26bce6452c440cf85622548afab9.tar.gz
PeerTube-728a1236aece26bce6452c440cf85622548afab9.tar.zst
PeerTube-728a1236aece26bce6452c440cf85622548afab9.zip
restore live transcoding to live streaming tab
Diffstat (limited to 'client/src/app/shared/shared-forms/select/select-custom-input.component.html')
-rw-r--r--client/src/app/shared/shared-forms/select/select-custom-input.component.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/client/src/app/shared/shared-forms/select/select-custom-input.component.html b/client/src/app/shared/shared-forms/select/select-custom-input.component.html
new file mode 100644
index 000000000..84fa15c3d
--- /dev/null
+++ b/client/src/app/shared/shared-forms/select/select-custom-input.component.html
@@ -0,0 +1,14 @@
1<ng-select
2 [(ngModel)]="selectedId"
3 (ngModelChange)="onModelChange()"
4 [bindLabel]="bindLabel"
5 [bindValue]="bindValue"
6 [clearable]="clearable"
7 [searchable]="searchable"
8>
9 <ng-option *ngFor="let item of items" [value]="item.id">
10 {{ channel.label }}
11 </ng-option>
12
13 <ng-content></ng-content>
14</ng-select>