]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+videos/+video-edit/video-update.component.html
Move to sass @use
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-edit / video-update.component.html
CommitLineData
4cc66133 1<div class="margin-content">
2ba5ac33
RK
2 <div class="title-page title-page-single">
3 <span class="mr-1" i18n>Update</span>
a1eda903 4 <a [routerLink]="[ '/w', video.uuid ]">{{ video?.name }}</a>
4cc66133 5 </div>
1cdb5c0f 6
897ec54d 7 <form novalidate [formGroup]="form">
6e07c3de 8
ff249f49 9 <my-video-edit
bbe0f064 10 [form]="form" [formErrors]="formErrors" [schedulePublicationPossible]="schedulePublicationPossible"
851f5daa 11 [validationMessages]="validationMessages" [userVideoChannels]="userVideoChannels"
ddb62a85 12 [videoCaptions]="videoCaptions" [waitTranscodingEnabled]="isWaitTranscodingEnabled()"
7294aab0 13 type="update" (pluginFieldsAdded)="hydratePluginFieldsFromVideo()"
0f319334 14 [liveVideo]="liveVideo" [videoToUpdate]="videoDetails"
ff249f49 15 ></my-video-edit>
dc8bc31b 16
4cc66133 17 <div class="submit-container">
1fe1e14c 18 <my-button className="orange-button" i18n-label label="Update" icon="circle-tick"
7294aab0 19 (click)="update()" (keydown.enter)="update()"
1fe1e14c
RK
20 [disabled]="!form.valid || isUpdatingVideo === true"
21 ></my-button>
897ec54d
C
22 </div>
23 </form>
897ec54d 24</div>