Skip to content

Commit

Permalink
fix more minor issues
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixTJDietrich committed Oct 18, 2024
1 parent 64af039 commit 1e171c1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 2 additions & 0 deletions webapp/src/app/core/footer/footer.component.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import { Component } from '@angular/core';
import { RouterModule } from '@angular/router';

@Component({
selector: 'app-footer',
imports: [RouterModule],
standalone: true,
templateUrl: './footer.component.html'
})
Expand Down
8 changes: 7 additions & 1 deletion webapp/src/app/home/leaderboard/leaderboard.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,13 @@
</tr>
} @else {
@for (entry of leaderboard(); track entry.githubName) {
<tr appTableRow routerLink="/user/{{ entry.githubName }}" routerLinkActive="active" ariaCurrentWhenActive="page" class="cursor-pointer">
<tr
appTableRow
routerLink="/user/{{ entry.githubName }}"
routerLinkActive="active"
ariaCurrentWhenActive="page"
class="cursor-pointer focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-background focus:ring-offset-2"
>
<td appTableCell class="text-center">{{ entry.rank }}</td>
<td appTableCell class="py-2">
<span class="flex items-center gap-2 font-medium">
Expand Down

0 comments on commit 1e171c1

Please sign in to comment.