Browse Source

Fix bug on template (#29887)

Caused by #29807
Fix #29886
tags/v1.21.9
Lunny Xiao 2 months ago
parent
commit
440be51a45
No account linked to committer's email address
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      templates/shared/issueicon.tmpl

+ 2
- 2
templates/shared/issueicon.tmpl View File

@@ -7,9 +7,9 @@
{{if .IsClosed}}
{{svg "octicon-git-pull-request" 16 "text red"}}
{{else}}
{{if and .PullRequest .PullRequest.IsWorkInProgress ctx}}
{{if and .PullRequest (.PullRequest.IsWorkInProgress ctx)}}
{{svg "octicon-git-pull-request-draft" 16 "text grey"}}
{{else if and .GetPullRequest .GetPullRequest.IsWorkInProgress ctx}}
{{else if and .GetPullRequest (.GetPullRequest.IsWorkInProgress ctx)}}
{{svg "octicon-git-pull-request-draft" 16 "text grey"}}
{{else}}
{{svg "octicon-git-pull-request" 16 "text green"}}

Loading…
Cancel
Save