]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/+my-account/my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component.html
align ownership change video list table with moderation tables
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-ownership / my-account-accept-ownership / my-account-accept-ownership.component.html
index 222da9542dde0b3a2521f4449593b3edb26a361e..def1cbab6fa99f49c13f7da7194773e2a33c6e82 100644 (file)
@@ -7,27 +7,27 @@
 
   <div class="modal-body" [formGroup]="form">
     <div class="form-group">
-      <label i18n for="channel">Select the target channel</label>
-      <select formControlName="channel" id="channel" class="peertube-select-container">
-        <option></option>
-        <option *ngFor="let channel of videoChannels" [value]="channel.id">{{ channel.displayName }}
-        </option>
-      </select>
-      <div *ngIf="formErrors.channel" class="form-error">
-        {{ formErrors.channel }}
+      <label i18n for="channel">Select a channel to receive the video</label>
+      <div class="peertube-select-container">
+        <select formControlName="channel" id="channel" class="form-control">
+          <option i18n value="undefined" disabled>Channel that will receive the video</option>
+          <option *ngFor="let channel of videoChannels" [value]="channel.id">{{ channel.displayName }}
+          </option>
+        </select>
       </div>
+      <div *ngIf="formErrors.channel" class="form-error">{{ formErrors.channel }}</div>
     </div>
   </div>
 
   <div class="modal-footer inputs">
-    <div class="form-group inputs">
+    <div class="inputs">
       <input
         type="button" role="button" i18n-value value="Cancel" class="action-button action-button-cancel"
         (click)="dismiss()" (key.enter)="dismiss()"
       >
 
       <input
-          type="submit" i18n-value value="Submit" class="action-button-submit"
+          type="submit" i18n-value value="Accept" class="action-button-submit"
           [disabled]="!form.valid"
           (click)="close()"
       >