Skip to content

Commit

Permalink
Add Github link to leaderboard entry
Browse files Browse the repository at this point in the history
  • Loading branch information
GODrums committed Sep 14, 2024
1 parent 407dd8e commit 06a5206
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@ <h1 class="text-3xl font-bold">Artemis Leaderboard</h1>
<tbody appTableBody>
@for (entry of leaderboard; track entry.githubName) {
<tr appTableRow>
<td appTableCell class="flex items-center gap-2 font-medium">
<img src="{{ entry.avatarUrl }}" width="24" height="24" />
{{ entry.name }}
<td appTableCell>
<a href="https://github.com/{{ entry.githubName }}" target="_blank" rel="noopener noreferrer" class="flex items-center gap-2 font-medium">
<img src="{{ entry.avatarUrl }}" width="24" height="24" />
<span class="text-muted-foreground">{{ entry.name }}</span>
</a>
</td>
<td appTableCell>{{ entry.score }}</td>
<td appTableCell class="flex items-center gap-4" title="Changes Requested">
Expand Down

0 comments on commit 06a5206

Please sign in to comment.