- @if (availableExerciseHints?.length) {
-
-
-
- @for (hint of availableExerciseHints; track hint) {
-
-
-
- }
-
-
- }
- @if (activatedExerciseHints?.length) {
-
-
- @for (hint of activatedExerciseHints; track hint) {
-
-
-
- }
-
- }
-
diff --git a/src/main/webapp/app/exercises/shared/exercise-hint/participate/exercise-hint-student-dialog.component.ts b/src/main/webapp/app/exercises/shared/exercise-hint/participate/exercise-hint-student-dialog.component.ts
deleted file mode 100644
index 4e5d174b28bd..000000000000
--- a/src/main/webapp/app/exercises/shared/exercise-hint/participate/exercise-hint-student-dialog.component.ts
+++ /dev/null
@@ -1,26 +0,0 @@
-import { Component, EventEmitter, Input, Output } from '@angular/core';
-import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
-import { ExerciseHint } from 'app/entities/hestia/exercise-hint.model';
-
-/**
- * This component is a modal that shows the exercise's hints.
- */
-@Component({
- selector: 'jhi-exercise-hint-student-dialog',
- templateUrl: './exercise-hint-student-dialog.component.html',
-})
-export class ExerciseHintStudentDialogComponent {
- @Input() availableExerciseHints: ExerciseHint[];
- @Input() activatedExerciseHints: ExerciseHint[];
- @Output()
- onHintActivated = new EventEmitter