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]);