From 0bda30a393feeb1bb93b08ec637eb7c4840a98ad Mon Sep 17 00:00:00 2001 From: SaadYousaf Date: Tue, 18 Aug 2020 02:15:42 +0500 Subject: [PATCH] fix issue with transcript dropdown. --- cms/static/js/views/video/translations_editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cms/static/js/views/video/translations_editor.js b/cms/static/js/views/video/translations_editor.js index 9570cd3ad9..c9ee4e3af5 100644 --- a/cms/static/js/views/video/translations_editor.js +++ b/cms/static/js/views/video/translations_editor.js @@ -133,7 +133,7 @@ function($, _, HtmlUtils, TranscriptUtils, AbstractEditor, ViewUtils, FileUpload value: value, url: self.model.get('urlRoot') })); - HtmlUtils.append($html, dropdown.clone().val(newLang)); + HtmlUtils.prepend($html, HtmlUtils.HTML(dropdown.clone().val(newLang))); frag.appendChild($html[0]); });