From c2a3e5c80e4de715c0346b76f20f9599eda46103 Mon Sep 17 00:00:00 2001 From: Christian Cueni Date: Thu, 2 May 2024 10:23:09 +0200 Subject: [PATCH] Hide feedback request in uk --- client/src/components/learningPath/SelfEvaluation.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/client/src/components/learningPath/SelfEvaluation.vue b/client/src/components/learningPath/SelfEvaluation.vue index ecb578ca..486150b9 100644 --- a/client/src/components/learningPath/SelfEvaluation.vue +++ b/client/src/components/learningPath/SelfEvaluation.vue @@ -46,7 +46,9 @@ const previousRoute = getPreviousRoute(); const learningUnitHasFeedbackPage = computed( () => - courseSession.value.course.configuration.enable_learning_mentor && !isReadOnly.value + courseSession.value.course.configuration.enable_learning_mentor && + !courseSession.value.course.configuration.is_uk && + !isReadOnly.value ); const currentQuestion = computed(() => questions.value[questionIndex.value]);