diff --git a/client/src/components/mediaLibrary/OverviewCard.vue b/client/src/components/mediaLibrary/OverviewCard.vue
index fe592f57..0edda822 100644
--- a/client/src/components/mediaLibrary/OverviewCard.vue
+++ b/client/src/components/mediaLibrary/OverviewCard.vue
@@ -1,4 +1,6 @@
+
+
+
+
+
diff --git a/client/src/pages/cockpit/assignmentEvaluationPage/EvaluationSummary.vue b/client/src/pages/cockpit/assignmentEvaluationPage/EvaluationSummary.vue
index e0de6449..52e20e80 100644
--- a/client/src/pages/cockpit/assignmentEvaluationPage/EvaluationSummary.vue
+++ b/client/src/pages/cockpit/assignmentEvaluationPage/EvaluationSummary.vue
@@ -16,6 +16,7 @@ import { useMutation } from "@urql/vue";
import dayjs, { Dayjs } from "dayjs";
import * as log from "loglevel";
import { computed, reactive } from "vue";
+import RichText from "@/components/ui/RichText.vue";
const props = defineProps<{
assignmentUser: CourseSessionUser;
@@ -188,10 +189,11 @@ const evaluationUser = computed(() => {
-
+
{
subTaskByPoints(task, evaluationForTask(task).points)?.value.title
"
>
-
+ open-links-in-new-tab
+ />
+
{{ evaluationForTask(task).points }} Punkte
diff --git a/client/src/pages/cockpit/assignmentEvaluationPage/EvaluationTask.vue b/client/src/pages/cockpit/assignmentEvaluationPage/EvaluationTask.vue
index f2c273dc..7beda376 100644
--- a/client/src/pages/cockpit/assignmentEvaluationPage/EvaluationTask.vue
+++ b/client/src/pages/cockpit/assignmentEvaluationPage/EvaluationTask.vue
@@ -13,6 +13,7 @@ import { useMutation } from "@urql/vue";
import { useDebounceFn } from "@vueuse/core";
import * as log from "loglevel";
import { computed } from "vue";
+import RichText from "@/components/ui/RichText.vue";
const props = defineProps<{
assignmentUser: CourseSessionUser;
@@ -114,11 +115,10 @@ const evaluateAssignmentCompletionDebounced = useDebounceFn(
/>
diff --git a/client/src/pages/learningPath/circlePage/CircleOverview.vue b/client/src/pages/learningPath/circlePage/CircleOverview.vue
index fe468913..b822194e 100644
--- a/client/src/pages/learningPath/circlePage/CircleOverview.vue
+++ b/client/src/pages/learningPath/circlePage/CircleOverview.vue
@@ -1,6 +1,7 @@
diff --git a/client/src/pages/learningPath/learningContentPage/assignment/AssignmentIntroductionView.vue b/client/src/pages/learningPath/learningContentPage/assignment/AssignmentIntroductionView.vue
index 1473f79e..f6c1ac16 100644
--- a/client/src/pages/learningPath/learningContentPage/assignment/AssignmentIntroductionView.vue
+++ b/client/src/pages/learningPath/learningContentPage/assignment/AssignmentIntroductionView.vue
@@ -4,6 +4,7 @@ import type { Assignment } from "@/types";
import { useRouteQuery } from "@vueuse/router";
import log from "loglevel";
import dayjs from "dayjs";
+import RichText from "@/components/ui/RichText.vue";
interface Props {
assignment: Assignment;
@@ -20,12 +21,12 @@ const step = useRouteQuery("step");
-
-
+ class="text-large"
+ :content="props.assignment.intro_text"
+ open-links-in-new-tab
+ />
{{ $t("assignment.taskDefinitionTitle") }}
@@ -74,11 +75,12 @@ const step = useRouteQuery("step");
"
>
{{ $t("a.Bewertung") }}
-
+ class="text-large"
+ :content="props.assignment.evaluation_description"
+ open-links-in-new-tab
+ />
();
-
-
+
{
diff --git a/client/src/pages/learningPath/learningContentPage/blocks/PlaceholderBlock.vue b/client/src/pages/learningPath/learningContentPage/blocks/PlaceholderBlock.vue
index 42c9a121..bf8e7afb 100644
--- a/client/src/pages/learningPath/learningContentPage/blocks/PlaceholderBlock.vue
+++ b/client/src/pages/learningPath/learningContentPage/blocks/PlaceholderBlock.vue
@@ -1,6 +1,7 @@