mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 05:18:25 +00:00 
			
		
		
		
	Fix new pull request link (#3133)
* Fix new pull request link * Only show button for branches
This commit is contained in:
		@@ -427,7 +427,6 @@ func RepoAssignment() macaron.Handler {
 | 
				
			|||||||
				return
 | 
									return
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		ctx.Data["IsForkedRepo"] = repo.IsFork
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
		// People who have push access or have forked repository can propose a new pull request.
 | 
							// People who have push access or have forked repository can propose a new pull request.
 | 
				
			||||||
		if ctx.Repo.IsWriter() || (ctx.IsSigned && ctx.User.HasForkedRepo(ctx.Repo.Repository.ID)) {
 | 
							if ctx.Repo.IsWriter() || (ctx.IsSigned && ctx.User.HasForkedRepo(ctx.Repo.Repository.ID)) {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -25,9 +25,9 @@
 | 
				
			|||||||
		</div>
 | 
							</div>
 | 
				
			||||||
		{{template "repo/sub_menu" .}}
 | 
							{{template "repo/sub_menu" .}}
 | 
				
			||||||
		<div class="ui secondary menu">
 | 
							<div class="ui secondary menu">
 | 
				
			||||||
			{{if .PullRequestCtx.Allowed}}
 | 
								{{if and .PullRequestCtx.Allowed .IsViewBranch}}
 | 
				
			||||||
				<div class="fitted item">
 | 
									<div class="fitted item">
 | 
				
			||||||
					<a href="{{.BaseRepo.Link}}/compare/{{.BaseRepo.DefaultBranch}}...{{if .IsForkedRepo}}{{.Repository.Owner.Name}}:{{else}}{{if .SignedUser.HasForkedRepo .BaseRepo.ID}}{{.SignedUser.Name}}:{{end}}{{end}}{{.BranchName}}">
 | 
										<a href="{{.BaseRepo.Link}}/compare/{{.BaseRepo.DefaultBranch}}...{{.Repository.Owner.Name}}:{{.BranchName}}">
 | 
				
			||||||
						<button class="ui green tiny compact button"><i class="octicon octicon-git-compare"></i></button>
 | 
											<button class="ui green tiny compact button"><i class="octicon octicon-git-compare"></i></button>
 | 
				
			||||||
					</a>
 | 
										</a>
 | 
				
			||||||
				</div>
 | 
									</div>
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user