From 53459d17dd5f43f97db4c0e5f50b37193332f133 Mon Sep 17 00:00:00 2001 From: akash5100 Date: Sun, 12 Feb 2023 12:20:45 +0530 Subject: [PATCH] remove name in the search field --- .../administration/pages/Channels/ChannelActionsDropdown.vue | 5 +---- .../frontend/administration/pages/Channels/ChannelItem.vue | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/contentcuration/contentcuration/frontend/administration/pages/Channels/ChannelActionsDropdown.vue b/contentcuration/contentcuration/frontend/administration/pages/Channels/ChannelActionsDropdown.vue index d71841492f..e243a8fd98 100644 --- a/contentcuration/contentcuration/frontend/administration/pages/Channels/ChannelActionsDropdown.vue +++ b/contentcuration/contentcuration/frontend/administration/pages/Channels/ChannelActionsDropdown.vue @@ -146,14 +146,11 @@ channel() { return this.getChannel(this.channelId); }, - name() { - return this.channel.name; - }, searchChannelEditorsLink() { return { name: RouteNames.USERS, query: { - keywords: `${this.name} ${this.channel.id}`, + keywords: `${this.channel.id}`, }, }; }, diff --git a/contentcuration/contentcuration/frontend/administration/pages/Channels/ChannelItem.vue b/contentcuration/contentcuration/frontend/administration/pages/Channels/ChannelItem.vue index 3e975714af..29f10ebc94 100644 --- a/contentcuration/contentcuration/frontend/administration/pages/Channels/ChannelItem.vue +++ b/contentcuration/contentcuration/frontend/administration/pages/Channels/ChannelItem.vue @@ -232,7 +232,7 @@ return { name: RouteNames.USERS, query: { - keywords: `${this.channel.name} ${this.channelId}`, + keywords: `${this.channelId}`, }, }; },