Skip to content

Commit

Permalink
fix issue with router link
Browse files Browse the repository at this point in the history
  • Loading branch information
coolchock committed Jan 2, 2025
1 parent ced115e commit 1b756c0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ <h2 class="font-weigth-bold">
@if (examScoreDTO.maxPoints) {
<h6>{{ 'artemisApp.examScores.maxPoints' | artemisTranslate }}: {{ localize(examScoreDTO.maxPoints) }},</h6>
}
<a [routerLink]="['/course-management', course!.id, 'exams', examScoreDTO.examId, 'exercise-groups']">
<a [routerLink]="['/course-management', course?.id, 'exams', examScoreDTO.examId, 'exercise-groups']">
<h6 class="ms-2">{{ exerciseGroups.length }} {{ 'artemisApp.examScores.noExerciseGroups' | artemisTranslate }}</h6>
</a>
<h6>,</h6>
<a [routerLink]="['/course-management', course!.id, 'exams', examScoreDTO.examId, 'students']">
<a [routerLink]="['/course-management', course?.id, 'exams', examScoreDTO.examId, 'students']">
<h6 class="ms-2">{{ aggregatedExamResults.noOfRegisteredUsers }} {{ 'artemisApp.examScores.registered' | artemisTranslate }}</h6>
</a>
</div>
Expand Down

0 comments on commit 1b756c0

Please sign in to comment.