Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jggoebel committed May 31, 2024
1 parent b90674a commit 9e522b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/leaderboard/leaderboard.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
<ng-container *ngFor="let score of getScores(); let i = index">
<tr class="entry-row">
<td *ngIf="i >= 3">{{ i + 1 }}.</td>
<td *ngIf="i == 0">🥇</td>
<td *ngIf="i == 1">🥈</td>
<td *ngIf="i == 2">🥉</td>
<td *ngIf="i === 0">🥇</td>
<td *ngIf="i === 1">🥈</td>
<td *ngIf="i === 2">🥉</td>
<td>
<ng-container *ngIf="score.code">
<a [href]="getUrl(score.code)">{{ score.name }}</a>
Expand Down

0 comments on commit 9e522b4

Please sign in to comment.