mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-11 19:51:52 +00:00
Fix Create new branch (#11294)
Fix #11212 Signed-off-by: Andrew Thornton <art27@cantab.net>
This commit is contained in:
parent
99082eebd7
commit
680dfab2ee
1 changed files with 1 additions and 1 deletions
|
@ -3085,7 +3085,7 @@ function initFilterBranchTagDropdown(selector) {
|
||||||
if (!this.showCreateNewBranch) {
|
if (!this.showCreateNewBranch) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.$refs.newBranchForm.trigger('submit');
|
$(this.$refs.newBranchForm).trigger('submit');
|
||||||
},
|
},
|
||||||
focusSearchField() {
|
focusSearchField() {
|
||||||
const vm = this;
|
const vm = this;
|
||||||
|
|
Loading…
Reference in a new issue