aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+my-account')
-rw-r--r--client/src/app/+my-account/my-account-video-playlists/my-account-video-playlist-edit.component.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/client/src/app/+my-account/my-account-video-playlists/my-account-video-playlist-edit.component.html b/client/src/app/+my-account/my-account-video-playlists/my-account-video-playlist-edit.component.html
index 05335dc1a..ff9cd37ea 100644
--- a/client/src/app/+my-account/my-account-video-playlists/my-account-video-playlist-edit.component.html
+++ b/client/src/app/+my-account/my-account-video-playlists/my-account-video-playlist-edit.component.html
@@ -32,7 +32,7 @@
32 <div class="form-group"> 32 <div class="form-group">
33 <label i18n for="displayName">Display name</label> 33 <label i18n for="displayName">Display name</label>
34 <input 34 <input
35 type="text" id="displayName" 35 type="text" id="displayName" class="form-control"
36 formControlName="displayName" [ngClass]="{ 'input-error': formErrors['displayName'] }" 36 formControlName="displayName" [ngClass]="{ 'input-error': formErrors['displayName'] }"
37 > 37 >
38 <div *ngIf="formErrors['displayName']" class="form-error"> 38 <div *ngIf="formErrors['displayName']" class="form-error">
@@ -44,7 +44,7 @@
44 <label i18n for="description">Description</label> 44 <label i18n for="description">Description</label>
45 <textarea 45 <textarea
46 id="description" formControlName="description" 46 id="description" formControlName="description"
47 [ngClass]="{ 'input-error': formErrors['description'] }" 47 class="form-control" [ngClass]="{ 'input-error': formErrors['description'] }"
48 ></textarea> 48 ></textarea>
49 <div *ngIf="formErrors.description" class="form-error"> 49 <div *ngIf="formErrors.description" class="form-error">
50 {{ formErrors.description }} 50 {{ formErrors.description }}
@@ -56,7 +56,7 @@
56 <div class="form-group"> 56 <div class="form-group">
57 <label i18n for="privacy">Privacy</label> 57 <label i18n for="privacy">Privacy</label>
58 <div class="peertube-select-container"> 58 <div class="peertube-select-container">
59 <select id="privacy" formControlName="privacy"> 59 <select id="privacy" formControlName="privacy" class="form-control">
60 <option *ngFor="let privacy of videoPlaylistPrivacies" [value]="privacy.id">{{ privacy.label }}</option> 60 <option *ngFor="let privacy of videoPlaylistPrivacies" [value]="privacy.id">{{ privacy.label }}</option>
61 </select> 61 </select>
62 </div> 62 </div>
@@ -69,7 +69,7 @@
69 <div class="form-group"> 69 <div class="form-group">
70 <label i18n>Channel</label> 70 <label i18n>Channel</label>
71 <div class="peertube-select-container"> 71 <div class="peertube-select-container">
72 <select formControlName="videoChannelId"> 72 <select formControlName="videoChannelId" class="form-control">
73 <option></option> 73 <option></option>
74 <option *ngFor="let channel of userVideoChannels" [value]="channel.id">{{ channel.label }}</option> 74 <option *ngFor="let channel of userVideoChannels" [value]="channel.id">{{ channel.label }}</option>
75 </select> 75 </select>