Skip to content

Commit

Permalink
Learning path: Fix translation for introduction screen (#9438)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesWt authored Oct 11, 2024
1 parent 7bbb2ea commit 93dae1b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@ import { LearningPathExerciseComponent } from 'app/course/learning-paths/compone
import { LearningPathApiService } from 'app/course/learning-paths/services/learning-path-api.service';
import { LearningPathNavigationService } from 'app/course/learning-paths/services/learning-path-navigation.service';
import { onError } from 'app/shared/util/global.utils';
import { TranslateDirective } from 'app/shared/language/translate.directive';

@Component({
selector: 'jhi-learning-path-student-page',
templateUrl: './learning-path-student-page.component.html',
styleUrl: './learning-path-student-page.component.scss',
standalone: true,
imports: [LearningPathNavComponent, LearningPathLectureUnitComponent, LearningPathExerciseComponent],
imports: [LearningPathNavComponent, LearningPathLectureUnitComponent, LearningPathExerciseComponent, TranslateDirective],
})
export class LearningPathStudentPageComponent {
protected readonly LearningObjectType = LearningObjectType;
Expand Down

0 comments on commit 93dae1b

Please sign in to comment.