From eadda68ded10fe65a6351198b47163eba9762d7a Mon Sep 17 00:00:00 2001 From: wxiaoguang Date: Sat, 1 Apr 2023 22:14:38 +0800 Subject: [PATCH] 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. --- web_src/js/features/repo-issue.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/web_src/js/features/repo-issue.js b/web_src/js/features/repo-issue.js index f1425d4459..3f1b73d91e 100644 --- a/web_src/js/features/repo-issue.js +++ b/web_src/js/features/repo-issue.js @@ -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(); });