aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-edit/shared/video-edit.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+videos/+video-edit/shared/video-edit.component.ts')
-rw-r--r--client/src/app/+videos/+video-edit/shared/video-edit.component.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/client/src/app/+videos/+video-edit/shared/video-edit.component.ts b/client/src/app/+videos/+video-edit/shared/video-edit.component.ts
index bf7fdeeed..b4638c2df 100644
--- a/client/src/app/+videos/+video-edit/shared/video-edit.component.ts
+++ b/client/src/app/+videos/+video-edit/shared/video-edit.component.ts
@@ -63,6 +63,7 @@ export class VideoEditComponent implements OnInit, OnDestroy {
63 63
64 @ViewChild('videoCaptionAddModal', { static: true }) videoCaptionAddModal: VideoCaptionAddModalComponent 64 @ViewChild('videoCaptionAddModal', { static: true }) videoCaptionAddModal: VideoCaptionAddModalComponent
65 65
66 @Output() formBuilt = new EventEmitter<void>()
66 @Output() pluginFieldsAdded = new EventEmitter<void>() 67 @Output() pluginFieldsAdded = new EventEmitter<void>()
67 68
68 // So that it can be accessed in the template 69 // So that it can be accessed in the template
@@ -154,6 +155,8 @@ export class VideoEditComponent implements OnInit, OnDestroy {
154 this.trackChannelChange() 155 this.trackChannelChange()
155 this.trackPrivacyChange() 156 this.trackPrivacyChange()
156 this.trackLivePermanentFieldChange() 157 this.trackLivePermanentFieldChange()
158
159 this.formBuilt.emit()
157 } 160 }
158 161
159 ngOnInit () { 162 ngOnInit () {