mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	Fix template error in pull request with deleted head repo (#24192)
Rendering of Allow Edits from Maintainers did not check if the head repo exists, while other parts of the page handle it gracefully.
This commit is contained in:
		
				
					committed by
					
						
						GitHub
					
				
			
			
				
	
			
			
			
						parent
						
							b39a5bbbd6
						
					
				
				
					commit
					eed6b28fc0
				
			@@ -690,7 +690,7 @@
 | 
			
		||||
			</div>
 | 
			
		||||
		{{end}}
 | 
			
		||||
 | 
			
		||||
		{{if and .Issue.IsPull .IsIssuePoster (not .Issue.IsClosed)}}
 | 
			
		||||
		{{if and .Issue.IsPull .IsIssuePoster (not .Issue.IsClosed) .Issue.PullRequest.HeadRepo}}
 | 
			
		||||
			{{if and (not (eq .Issue.PullRequest.HeadRepo.FullName .Issue.PullRequest.BaseRepo.FullName)) .CanWriteToHeadRepo}}
 | 
			
		||||
				<div class="ui divider"></div>
 | 
			
		||||
				<div class="inline field">
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user