From 9264d38843950c03637d8cba26a4f00a26df782a Mon Sep 17 00:00:00 2001 From: Vivek Agrawal Date: Sat, 23 Dec 2023 21:15:31 +0530 Subject: [PATCH] Fix wrong computed prop name --- .../channelEdit/views/ImportFromChannels/SearchFilterBar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contentcuration/contentcuration/frontend/channelEdit/views/ImportFromChannels/SearchFilterBar.vue b/contentcuration/contentcuration/frontend/channelEdit/views/ImportFromChannels/SearchFilterBar.vue index d77ddf871a..edc5840a93 100644 --- a/contentcuration/contentcuration/frontend/channelEdit/views/ImportFromChannels/SearchFilterBar.vue +++ b/contentcuration/contentcuration/frontend/channelEdit/views/ImportFromChannels/SearchFilterBar.vue @@ -115,7 +115,7 @@ this.created_after = null; }, removeChannel(channelId) { - this.channels = this.channels.filter(c => c !== channelId); + this.channel_id__in = this.channel_id__in.filter(c => c !== channelId); }, }, $trs: {