mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	* Fix branch page pull request title and link error (#10092) * Fix tmpl
This commit is contained in:
		@@ -221,6 +221,7 @@ func loadBranches(ctx *context.Context) []*Branch {
 | 
				
			|||||||
			} else {
 | 
								} else {
 | 
				
			||||||
				repoIDToRepo[pr.BaseRepoID] = pr.BaseRepo
 | 
									repoIDToRepo[pr.BaseRepoID] = pr.BaseRepo
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
 | 
								pr.Issue.Repo = pr.BaseRepo
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			if pr.HasMerged {
 | 
								if pr.HasMerged {
 | 
				
			||||||
				baseGitRepo, ok := repoIDToGitRepo[pr.BaseRepoID]
 | 
									baseGitRepo, ok := repoIDToGitRepo[pr.BaseRepoID]
 | 
				
			||||||
@@ -243,7 +244,6 @@ func loadBranches(ctx *context.Context) []*Branch {
 | 
				
			|||||||
					mergeMovedOn = true
 | 
										mergeMovedOn = true
 | 
				
			||||||
				}
 | 
									}
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
 | 
					 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		branches[i] = &Branch{
 | 
							branches[i] = &Branch{
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -73,7 +73,7 @@
 | 
				
			|||||||
										</div>
 | 
															</div>
 | 
				
			||||||
										{{end}}
 | 
															{{end}}
 | 
				
			||||||
									</td>
 | 
														</td>
 | 
				
			||||||
									<td class="two wide right aligned">
 | 
														<td class="three wide right aligned">
 | 
				
			||||||
										{{if not .LatestPullRequest}}
 | 
															{{if not .LatestPullRequest}}
 | 
				
			||||||
											{{if and (not .IsDeleted) $.AllowsPulls (gt .CommitsAhead 0)}}
 | 
																{{if and (not .IsDeleted) $.AllowsPulls (gt .CommitsAhead 0)}}
 | 
				
			||||||
											<a href="{{$.RepoLink}}/compare/{{$.DefaultBranch | EscapePound}}...{{if ne $.Repository.Owner.Name $.Owner.Name}}{{$.Owner.Name}}:{{end}}{{.Name | EscapePound}}">
 | 
																<a href="{{$.RepoLink}}/compare/{{$.DefaultBranch | EscapePound}}...{{if ne $.Repository.Owner.Name $.Owner.Name}}{{$.Owner.Name}}:{{end}}{{.Name | EscapePound}}">
 | 
				
			||||||
@@ -87,13 +87,13 @@
 | 
				
			|||||||
											</a>
 | 
																</a>
 | 
				
			||||||
											{{end}}
 | 
																{{end}}
 | 
				
			||||||
										{{else}}
 | 
															{{else}}
 | 
				
			||||||
											<a href="{{$.RepoLink}}/pulls/{{.LatestPullRequest.Issue.Index}}">#{{.LatestPullRequest.Issue.Index}}</a>
 | 
																<a href="{{.LatestPullRequest.Issue.HTMLURL}}">{{if ne .LatestPullRequest.BaseRepoID .LatestPullRequest.HeadRepoID}}{{.LatestPullRequest.BaseRepo.FullName}}{{end}}#{{.LatestPullRequest.Issue.Index}}</a>
 | 
				
			||||||
											{{if .LatestPullRequest.HasMerged}}
 | 
																{{if .LatestPullRequest.HasMerged}}
 | 
				
			||||||
												<a href="{{$.RepoLink}}/pulls/{{.LatestPullRequest.Issue.Index}}" class="ui purple small label"><i class="octicon octicon-git-pull-request"></i> {{$.i18n.Tr "repo.pulls.merged"}}</a>
 | 
																	<a href="{{.LatestPullRequest.Issue.HTMLURL}}" class="ui purple mini label"><i class="octicon octicon-git-pull-request"></i> {{$.i18n.Tr "repo.pulls.merged"}}</a>
 | 
				
			||||||
											{{else if .LatestPullRequest.Issue.IsClosed}}
 | 
																{{else if .LatestPullRequest.Issue.IsClosed}}
 | 
				
			||||||
												<a href="{{$.RepoLink}}/pulls/{{.LatestPullRequest.Issue.Index}}" class="ui red small label"><i class="octicon octicon-issue-closed"></i> {{$.i18n.Tr "repo.issues.closed_title"}}</a>
 | 
																	<a href="{{.LatestPullRequest.Issue.HTMLURL}}" class="ui red mini label"><i class="octicon octicon-issue-closed"></i> {{$.i18n.Tr "repo.issues.closed_title"}}</a>
 | 
				
			||||||
											{{else}}
 | 
																{{else}}
 | 
				
			||||||
												<a href="{{$.RepoLink}}/pulls/{{.LatestPullRequest.Issue.Index}}" class="ui green small label"><i class="octicon octicon-issue-opened"></i> {{$.i18n.Tr "repo.issues.open_title"}}</a>
 | 
																	<a href="{{.LatestPullRequest.Issue.HTMLURL}}" class="ui green mini label"><i class="octicon octicon-issue-opened"></i> {{$.i18n.Tr "repo.issues.open_title"}}</a>
 | 
				
			||||||
											{{end}}
 | 
																{{end}}
 | 
				
			||||||
										{{end}}
 | 
															{{end}}
 | 
				
			||||||
									</td>
 | 
														</td>
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user