Browse Source

Pull Requests: add color to approved/reject icon in pull requests list

Makes it easier to scan the list of pull requests and see the status.
tags/v1.19.0-rc0
Brecht Van Lommel 1 year ago
parent
commit
86c6b0de06
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      templates/shared/issuelist.tmpl

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

@@ -118,13 +118,13 @@
{{$rejectOfficial := call $approvalCounts .ID "reject"}}
{{$waitingOfficial := call $approvalCounts .ID "waiting"}}
{{if gt $approveOfficial 0}}
<span class="approvals df ac">
<span class="approvals df ac green">
{{svg "octicon-check" 14 "mr-1"}}
{{$.locale.TrN $approveOfficial "repo.pulls.approve_count_1" "repo.pulls.approve_count_n" $approveOfficial}}
</span>
{{end}}
{{if gt $rejectOfficial 0}}
<span class="rejects df ac">
<span class="rejects df ac red">
{{svg "octicon-diff" 14 "mr-2"}}
{{$.locale.TrN $rejectOfficial "repo.pulls.reject_count_1" "repo.pulls.reject_count_n" $rejectOfficial}}
</span>

Loading…
Cancel
Save