From: Chocobozzz Date: Mon, 17 Dec 2018 12:38:01 +0000 (+0100) Subject: Fix adding captions to a video X-Git-Tag: v1.3.0-rc.2~11^2~2 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=c22419dd265c0c7185bf4197a1cb286eb3d8ebc0;p=oweals%2Fpeertube.git Fix adding captions to a video --- diff --git a/client/src/app/videos/+video-edit/shared/video-caption-add-modal.component.ts b/client/src/app/videos/+video-edit/shared/video-caption-add-modal.component.ts index eaf819726..1413e7262 100644 --- a/client/src/app/videos/+video-edit/shared/video-caption-add-modal.component.ts +++ b/client/src/app/videos/+video-edit/shared/video-caption-add-modal.component.ts @@ -72,8 +72,6 @@ export class VideoCaptionAddModalComponent extends FormReactive implements OnIni } async addCaption () { - this.hide() - const languageId = this.form.value[ 'language' ] const languageObject = this.videoCaptionLanguages.find(l => l.id === languageId) @@ -82,6 +80,6 @@ export class VideoCaptionAddModalComponent extends FormReactive implements OnIni captionfile: this.form.value[ 'captionfile' ] }) - this.form.reset() + this.hide() } }