aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/video-edit/video-update.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/videos/video-edit/video-update.component.ts')
-rw-r--r--client/src/app/videos/video-edit/video-update.component.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/client/src/app/videos/video-edit/video-update.component.ts b/client/src/app/videos/video-edit/video-update.component.ts
index adb3d295c..933132cc0 100644
--- a/client/src/app/videos/video-edit/video-update.component.ts
+++ b/client/src/app/videos/video-edit/video-update.component.ts
@@ -98,7 +98,17 @@ export class VideoUpdateComponent extends FormReactive implements OnInit {
98 ); 98 );
99 } 99 }
100 100
101 checkForm() {
102 this.forceCheck();
103
104 return this.form.valid;
105 }
106
101 update() { 107 update() {
108 if (this.checkForm() === false) {
109 return;
110 }
111
102 this.video.patch(this.form.value); 112 this.video.patch(this.form.value);
103 113
104 this.videoService.updateVideo(this.video) 114 this.videoService.updateVideo(this.video)