From 8cd5483e8add7f6579b2a377cc0d8027a4a05bfa Mon Sep 17 00:00:00 2001 From: Giteabot Date: Wed, 19 Apr 2023 17:20:19 -0400 Subject: [PATCH] Fix template error in pull request with deleted head repo (#24192) (#24216) Backport #24192 by @brechtvl Rendering of Allow Edits from Maintainers did not check if the head repo exists, while other parts of the page handle it gracefully. Co-authored-by: Brecht Van Lommel --- templates/repo/issue/view_content/sidebar.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/repo/issue/view_content/sidebar.tmpl b/templates/repo/issue/view_content/sidebar.tmpl index 0728f5390a..0d796af0f3 100644 --- a/templates/repo/issue/view_content/sidebar.tmpl +++ b/templates/repo/issue/view_content/sidebar.tmpl @@ -704,7 +704,7 @@ {{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}}