aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2020-08-05 00:50:07 +0200
committerChocobozzz <chocobozzz@cpy.re>2020-08-11 09:03:39 +0200
commit02c01341f4dae30ec6b81fcb644952393d73c4a8 (patch)
treeaca3f2b118bb123457fd38724be68fe877504c75 /client/src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html
parent766d13b4470de02d3d7bec94188260b89a356399 (diff)
downloadPeerTube-02c01341f4dae30ec6b81fcb644952393d73c4a8.tar.gz
PeerTube-02c01341f4dae30ec6b81fcb644952393d73c4a8.tar.zst
PeerTube-02c01341f4dae30ec6b81fcb644952393d73c4a8.zip
add ng-select for templatable select options
- create select-tags component to replace ngx-chips - create select-options to factorize option selection in forms - create select-channel to simplify channel selection - refactor tags validation
Diffstat (limited to 'client/src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html')
-rw-r--r--client/src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html16
1 files changed, 6 insertions, 10 deletions
diff --git a/client/src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html b/client/src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html
index 5678f548f..8db37a293 100644
--- a/client/src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html
+++ b/client/src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html
@@ -25,20 +25,16 @@
25 25
26 <div class="form-group"> 26 <div class="form-group">
27 <label i18n for="first-step-channel">Channel</label> 27 <label i18n for="first-step-channel">Channel</label>
28 <div class="peertube-select-container"> 28 <my-select-channel
29 <select id="first-step-channel" [(ngModel)]="firstStepChannelId" class="form-control"> 29 labelForId="first-step-channel" [items]="userVideoChannels" [(ngModel)]="firstStepChannelId"
30 <option *ngFor="let channel of userVideoChannels" [value]="channel.id">{{ channel.label }}</option> 30 ></my-select-channel>
31 </select>
32 </div>
33 </div> 31 </div>
34 32
35 <div class="form-group"> 33 <div class="form-group">
36 <label i18n for="first-step-privacy">Privacy</label> 34 <label i18n for="first-step-privacy">Privacy</label>
37 <div class="peertube-select-container"> 35 <my-select-options
38 <select id="first-step-privacy" [(ngModel)]="firstStepPrivacyId" class="form-control"> 36 labelForId="first-step-privacy" [items]="videoPrivacies" [(ngModel)]="firstStepPrivacyId"
39 <option *ngFor="let privacy of videoPrivacies" [value]="privacy.id">{{ privacy.label }}</option> 37 ></my-select-options>
40 </select>
41 </div>
42 </div> 38 </div>
43 39
44 <input 40 <input