mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
Fix JS error when changing PR's target branch (#23862)
Caught by @justusbunsi An old bug from #6488 In `pullrequest_targetbranch_change`, the `data` might be empty, because `UpdatePullRequestTarget` may respond `http.StatusNoContent`. And the old code's `$branchTarget.text(data.base_branch);` doesn't make sense, because in the end, the page will be always reloaded. So, just remove the `$branchTarget.text(data.base_branch);`, everything should be fine.
This commit is contained in:
parent
aa9c920980
commit
eadda68ded
1 changed files with 0 additions and 2 deletions
|
@ -645,8 +645,6 @@ export function initRepoIssueTitleEdit() {
|
|||
$.post(update_url, {
|
||||
_csrf: csrfToken,
|
||||
target_branch: targetBranch
|
||||
}).done((data) => {
|
||||
$branchTarget.text(data.base_branch);
|
||||
}).always(() => {
|
||||
window.location.reload();
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue