From 6ea37447f4d7013722c66f65f610313432573f8c Mon Sep 17 00:00:00 2001 From: Ramon Wenger Date: Wed, 17 Jul 2024 19:21:03 +0200 Subject: [PATCH] Make "all" filter more explicit --- client/src/constants.ts | 2 ++ .../learningPathPage/LearningPathListTopic.vue | 7 ++++++- .../learningPathPage/LearningPathPathTopic.vue | 7 ++++++- .../learningPathPage/LearningPathProfileFilter.vue | 7 ++++++- 4 files changed, 20 insertions(+), 3 deletions(-) diff --git a/client/src/constants.ts b/client/src/constants.ts index 84aaefc3..57c51683 100644 --- a/client/src/constants.ts +++ b/client/src/constants.ts @@ -3,3 +3,5 @@ export const itCheckboxDefaultIconCheckedTailwindClass = export const itCheckboxDefaultIconUncheckedTailwindClass = "bg-[url(/static/icons/icon-checkbox-unchecked.svg)] hover:bg-[url(/static/icons/icon-checkbox-unchecked-hover.svg)]"; + +export const COURSE_PROFILE_ALL_FILTER = "all"; diff --git a/client/src/pages/learningPath/learningPathPage/LearningPathListTopic.vue b/client/src/pages/learningPath/learningPathPage/LearningPathListTopic.vue index 5c625306..4cf545ea 100644 --- a/client/src/pages/learningPath/learningPathPage/LearningPathListTopic.vue +++ b/client/src/pages/learningPath/learningPathPage/LearningPathListTopic.vue @@ -1,4 +1,5 @@