Only display the profile filter on VV learningpath(s)
This commit is contained in:
parent
e3090fcfa1
commit
544649a516
|
|
@ -285,6 +285,7 @@ export const COURSE_QUERY = graphql(`
|
|||
enable_learning_mentor
|
||||
enable_competence_certificates
|
||||
is_uk
|
||||
is_vv
|
||||
}
|
||||
action_competences {
|
||||
competence_id
|
||||
|
|
|
|||
|
|
@ -95,6 +95,7 @@ const changeViewType = (viewType: ViewType) => {
|
|||
></CircleProgress>
|
||||
</div>
|
||||
|
||||
<!-- todo: find out when to display CourseSessionDueDatesList -->
|
||||
<div v-if="!useMobileLayout && false" class="flex-grow">
|
||||
<CourseSessionDueDatesList
|
||||
:course-session-id="courseSession.id"
|
||||
|
|
@ -103,7 +104,7 @@ const changeViewType = (viewType: ViewType) => {
|
|||
</div>
|
||||
<!-- Right -->
|
||||
<LearningPathProfileFilter
|
||||
v-if="!useMobileLayout"
|
||||
v-if="!useMobileLayout && course?.configuration.is_vv"
|
||||
:profiles="course?.profiles"
|
||||
:selected="filter"
|
||||
@select="updateCourseProfile"
|
||||
|
|
|
|||
Loading…
Reference in New Issue