From 4ec85b969fa5c3f9f075f35c478282e8c2cba95b Mon Sep 17 00:00:00 2001 From: Shivansh Bhatnagar Date: Sat, 20 Apr 2024 13:50:34 +0530 Subject: [PATCH 1/7] Fixed the missing checkbox labels --- .../views/Channel/components/LanguageFilter.vue | 16 +--------------- .../frontend/shared/views/form/MultiSelect.vue | 9 --------- 2 files changed, 1 insertion(+), 24 deletions(-) diff --git a/contentcuration/contentcuration/frontend/channelList/views/Channel/components/LanguageFilter.vue b/contentcuration/contentcuration/frontend/channelList/views/Channel/components/LanguageFilter.vue index f62e872887..4aaf42b160 100644 --- a/contentcuration/contentcuration/frontend/channelList/views/Channel/components/LanguageFilter.vue +++ b/contentcuration/contentcuration/frontend/channelList/views/Channel/components/LanguageFilter.vue @@ -28,20 +28,6 @@ {{ item.name }} - @@ -95,7 +81,7 @@ }, methods: { languageSearchValue(item) { - return item.name + (item.related_names || []).join('') + item.id; + return item.name; }, }, $trs: { diff --git a/contentcuration/contentcuration/frontend/shared/views/form/MultiSelect.vue b/contentcuration/contentcuration/frontend/shared/views/form/MultiSelect.vue index 74ddb24152..5fece40fc2 100644 --- a/contentcuration/contentcuration/frontend/shared/views/form/MultiSelect.vue +++ b/contentcuration/contentcuration/frontend/shared/views/form/MultiSelect.vue @@ -20,15 +20,6 @@ {{ getText(item) }} - From 9fc93ded1d3adf2e7f14364abf7187e351637fb0 Mon Sep 17 00:00:00 2001 From: Shivansh Bhatnagar Date: Fri, 3 May 2024 02:47:34 +0530 Subject: [PATCH 2/7] Added the missing checkbox labels --- .../channelList/views/Channel/components/LanguageFilter.vue | 2 -- .../contentcuration/frontend/shared/views/form/MultiSelect.vue | 2 -- 2 files changed, 4 deletions(-) diff --git a/contentcuration/contentcuration/frontend/channelList/views/Channel/components/LanguageFilter.vue b/contentcuration/contentcuration/frontend/channelList/views/Channel/components/LanguageFilter.vue index f62e872887..b62865c789 100644 --- a/contentcuration/contentcuration/frontend/channelList/views/Channel/components/LanguageFilter.vue +++ b/contentcuration/contentcuration/frontend/channelList/views/Channel/components/LanguageFilter.vue @@ -30,7 +30,6 @@ diff --git a/contentcuration/contentcuration/frontend/shared/views/form/MultiSelect.vue b/contentcuration/contentcuration/frontend/shared/views/form/MultiSelect.vue index 74ddb24152..b07a8b7f4c 100644 --- a/contentcuration/contentcuration/frontend/shared/views/form/MultiSelect.vue +++ b/contentcuration/contentcuration/frontend/shared/views/form/MultiSelect.vue @@ -22,11 +22,9 @@ From da9e79047e0c843c5775a32389338a663e78d981 Mon Sep 17 00:00:00 2001 From: Shivansh Bhatnagar Date: Sun, 5 May 2024 01:45:52 +0530 Subject: [PATCH 3/7] Added the KCheckBox for the MultiSelect Component --- .../frontend/shared/views/form/MultiSelect.vue | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/contentcuration/contentcuration/frontend/shared/views/form/MultiSelect.vue b/contentcuration/contentcuration/frontend/shared/views/form/MultiSelect.vue index b07a8b7f4c..31b1913616 100644 --- a/contentcuration/contentcuration/frontend/shared/views/form/MultiSelect.vue +++ b/contentcuration/contentcuration/frontend/shared/views/form/MultiSelect.vue @@ -21,11 +21,13 @@ From f3ad4e34ac77c8e2bba3ebb36df6c0e854244874 Mon Sep 17 00:00:00 2001 From: Shivansh Bhatnagar Date: Sun, 5 May 2024 02:03:14 +0530 Subject: [PATCH 4/7] fixed some minor linting errors --- .../channelList/views/Channel/components/LanguageFilter.vue | 2 +- .../frontend/shared/views/form/MultiSelect.vue | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/contentcuration/contentcuration/frontend/channelList/views/Channel/components/LanguageFilter.vue b/contentcuration/contentcuration/frontend/channelList/views/Channel/components/LanguageFilter.vue index 783b72d8ca..b62865c789 100644 --- a/contentcuration/contentcuration/frontend/channelList/views/Channel/components/LanguageFilter.vue +++ b/contentcuration/contentcuration/frontend/channelList/views/Channel/components/LanguageFilter.vue @@ -93,7 +93,7 @@ }, methods: { languageSearchValue(item) { - return item.name; + return item.name + (item.related_names || []).join('') + item.id; }, }, $trs: { diff --git a/contentcuration/contentcuration/frontend/shared/views/form/MultiSelect.vue b/contentcuration/contentcuration/frontend/shared/views/form/MultiSelect.vue index 31b1913616..1c933faafa 100644 --- a/contentcuration/contentcuration/frontend/shared/views/form/MultiSelect.vue +++ b/contentcuration/contentcuration/frontend/shared/views/form/MultiSelect.vue @@ -20,7 +20,7 @@ {{ getText(item) }} -