Skip to content

Commit

Permalink
fix plagiarism-cases-overview.component.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
coolchock committed Nov 27, 2024
1 parent e73c926 commit cfbcd3e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export class PlagiarismCasesOverviewComponent {
private router = inject(Router);

exercises = input.required<Exercise[]>();
plagiarismCasesPerExercise = input<Map<Exercise, number>>();
plagiarismCasesPerExercise = input.required<Map<Exercise, number>>();
plagiarismResultsPerExercise = input.required<Map<Exercise, number>>();
anyPlagiarismCases = input(false);
courseId = input.required<number>();
Expand Down

0 comments on commit cfbcd3e

Please sign in to comment.