Skip to content

Commit

Permalink
fix issue
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixTJDietrich committed Oct 3, 2024
1 parent dedf844 commit 8d7574d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/app/home/leaderboard/leaderboard.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<td appTableCell class="text-center">{{ entry.score }}</td>
<td appTableCell class="py-2">
<div class="flex items-center gap-2">
@if (entry.numberOfReviewedPRs > 0) {
@if (entry.numberOfReviewedPRs) {
<div class="flex items-center gap-1 text-github-muted-foreground" title="Total reviewed PRs">
<ng-icon [svg]="octGitPullRequest" size="16" />
{{ entry.numberOfReviewedPRs }}
Expand Down

0 comments on commit 8d7574d

Please sign in to comment.