Skip to content

Commit cb401b7

Browse files
committed
Fix wrong variable reference
1 parent 651dbdb commit cb401b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/shared/issuelist.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<div class="issue-item-top-row">
3434
<a class="title tdn" href="{{if .HTMLURL}}{{.HTMLURL}}{{else}}{{$.Link}}/{{.Index}}{{end}}">{{RenderEmoji .Title}}</a>
3535
{{if .IsPull}}
36-
{{if (index $.CommitStatus .PullRequest.ID)}}
36+
{{if (index $.CommitStatuses .PullRequest.ID)}}
3737
{{template "repo/commit_statuses" (index $.CommitStatuses .PullRequest.ID)}}
3838
{{end}}
3939
{{end}}

0 commit comments

Comments
 (0)