diff options
author | Brecht Van Lommel | 2023-03-04 05:48:05 +0100 |
---|---|---|
committer | GitHub | 2023-03-03 23:48:05 -0500 |
commit | 47bb5f11cb8c6976c14e92e7aa37ebb39a09416b (patch) | |
tree | c1ba87b401f67888590b5f0dcdd40e200392b46a | |
parent | 7b9e23cc1d1e8d757f241b37b0799083149d91f3 (diff) |
Fix stray backticks appearing in pull request timeline (#23282)
Caused by #23189.
-rw-r--r-- | templates/repo/issue/view_content/comments.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/repo/issue/view_content/comments.tmpl b/templates/repo/issue/view_content/comments.tmpl index 03f48ace6..4839e8084 100644 --- a/templates/repo/issue/view_content/comments.tmpl +++ b/templates/repo/issue/view_content/comments.tmpl @@ -700,8 +700,8 @@ <!-- If PR is closed, the comments whose type is CommentTypePullRequestPush(29) after latestCloseCommentID won't be rendered. //--> {{if and .Issue.IsClosed (gt .ID $.LatestCloseCommentID)}} {{continue}} - {{end}}` - <div class="timeline-item event" id="{{.HashTag}}">` + {{end}} + <div class="timeline-item event" id="{{.HashTag}}"> <span class="badge">{{svg "octicon-repo-push"}}</span> <span class="text grey muted-links"> {{template "shared/user/authorlink" .Poster}} |