From 680dfab2eeb65c0ba068f0996742adae59e0e5a8 Mon Sep 17 00:00:00 2001 From: zeripath Date: Mon, 4 May 2020 21:55:52 +0100 Subject: [PATCH] Fix Create new branch (#11294) Fix #11212 Signed-off-by: Andrew Thornton --- web_src/js/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_src/js/index.js b/web_src/js/index.js index 21b9da41ad..639f36fab7 100644 --- a/web_src/js/index.js +++ b/web_src/js/index.js @@ -3085,7 +3085,7 @@ function initFilterBranchTagDropdown(selector) { if (!this.showCreateNewBranch) { return; } - this.$refs.newBranchForm.trigger('submit'); + $(this.$refs.newBranchForm).trigger('submit'); }, focusSearchField() { const vm = this;