mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 03:18:24 +00: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:
		| @@ -645,8 +645,6 @@ export function initRepoIssueTitleEdit() { | |||||||
|       $.post(update_url, { |       $.post(update_url, { | ||||||
|         _csrf: csrfToken, |         _csrf: csrfToken, | ||||||
|         target_branch: targetBranch |         target_branch: targetBranch | ||||||
|       }).done((data) => { |  | ||||||
|         $branchTarget.text(data.base_branch); |  | ||||||
|       }).always(() => { |       }).always(() => { | ||||||
|         window.location.reload(); |         window.location.reload(); | ||||||
|       }); |       }); | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user