Lazy description and previews to video form
[oweals/peertube.git] / client / src / app / videos / +video-edit / video-add.component.html
index 3bf4101f4afd763bbfd172d36a9ccf56d7c447f5..a70788ed82264e0a9e54a29460742217dd5a5673 100644 (file)
@@ -28,7 +28,6 @@
       <div class="form-group">
         <label for="category">Channel</label>
         <select class="form-control" id="channelId" formControlName="channelId">
-          <option></option>
           <option *ngFor="let channel of userVideoChannels" [value]="channel.id">{{ channel.label }}</option>
         </select>
 
 
       <div class="form-group">
         <label for="description">Description</label>
-        <textarea
-          id="description" class="form-control" placeholder="Description..."
-          formControlName="description"
-        >
-        </textarea>
+        <my-video-description formControlName="description"></my-video-description>
+
         <div *ngIf="formErrors.description" class="alert alert-danger">
           {{ formErrors.description }}
         </div>