From f035cf15c7edc18c2c14230d08b6401a34395907 Mon Sep 17 00:00:00 2001 From: Maximilian Soelch Date: Fri, 3 Jan 2025 15:04:03 +0100 Subject: [PATCH] Change ng-template to ng-container to show the exercise title --- .../tutor/exercise-assessment-dashboard.component.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/webapp/app/exercises/shared/dashboards/tutor/exercise-assessment-dashboard.component.html b/src/main/webapp/app/exercises/shared/dashboards/tutor/exercise-assessment-dashboard.component.html index 2ac0bbee41af..b1b2e9295b76 100644 --- a/src/main/webapp/app/exercises/shared/dashboards/tutor/exercise-assessment-dashboard.component.html +++ b/src/main/webapp/app/exercises/shared/dashboards/tutor/exercise-assessment-dashboard.component.html @@ -1,12 +1,12 @@ @if (exercise) { - + @if (!isTestRun) { {{ 'artemisApp.exerciseAssessmentDashboard.pageHeader' | artemisTranslate }} {{ exercise?.title }} } @else { {{ 'artemisApp.exerciseAssessmentDashboard.testRunPageHeader' | artemisTranslate }} {{ exercise?.title }} } - + }