+
{{ value.description }}
{{ content.title }}
diff --git a/client/src/stores/circle.ts b/client/src/stores/circle.ts
index 009ce2d5..4bdf2522 100644
--- a/client/src/stores/circle.ts
+++ b/client/src/stores/circle.ts
@@ -162,32 +162,7 @@ export const useCircleStore = defineStore({
continueFromLearningContent(currentLearningContent: LearningContent) {
if (currentLearningContent) {
this.markCompletion(currentLearningContent, "success");
-
- const nextLearningContent = currentLearningContent.nextLearningContent;
- const currentParent = currentLearningContent.parentLearningUnit;
- const nextParent = nextLearningContent?.parentLearningUnit;
-
- if (
- currentParent &&
- currentParent.id &&
- currentParent.id !== nextParent?.id &&
- currentParent.children.length > 0
- ) {
- // go to self evaluation
- this.openSelfEvaluation(currentParent);
- } else if (currentLearningContent.nextLearningContent) {
- if (
- currentLearningContent.parentLearningUnit &&
- currentLearningContent.parentLearningUnit.id ===
- nextLearningContent?.parentLearningUnit?.id
- ) {
- this.openLearningContent(currentLearningContent.nextLearningContent);
- } else {
- this.closeLearningContent(currentLearningContent);
- }
- } else {
- this.closeLearningContent(currentLearningContent);
- }
+ this.closeLearningContent(currentLearningContent);
} else {
log.error("currentLearningContent is undefined");
}
diff --git a/client/tailwind.css b/client/tailwind.css
index 8a3996fe..4d5a61c1 100644
--- a/client/tailwind.css
+++ b/client/tailwind.css
@@ -122,6 +122,10 @@ svg {
hover:text-gray-700
disabled:cursor-not-allowed disabled:opacity-50;
}
+
+ .btn-large-icon {
+ @apply flex items-center px-6 py-3 text-xl font-bold;
+ }
}
@layer utilities {
diff --git a/server/vbv_lernwelt/feedback/factories.py b/server/vbv_lernwelt/feedback/factories.py
index 96edff5d..73dd1285 100644
--- a/server/vbv_lernwelt/feedback/factories.py
+++ b/server/vbv_lernwelt/feedback/factories.py
@@ -8,13 +8,13 @@ class FeedbackFactory(DjangoModelFactory):
class Meta:
model = FeedbackResponse
- satisfaction = FuzzyInteger(1, 4)
- goal_attainment = FuzzyInteger(1, 4)
+ satisfaction = FuzzyInteger(2, 4)
+ goal_attainment = FuzzyInteger(3, 4)
proficiency = FuzzyChoice([20, 40, 60, 80])
received_materials = FuzzyChoice([True, False])
- materials_rating = FuzzyInteger(1, 4)
- instructor_competence = FuzzyInteger(1, 4)
- instructor_respect = FuzzyInteger(1, 4)
+ materials_rating = FuzzyInteger(2, 4)
+ instructor_competence = FuzzyInteger(3, 4)
+ instructor_respect = FuzzyInteger(3, 4)
instructor_open_feedback = FuzzyChoice(
[
"Alles gut, manchmal etwas langfädig",