From a08bd7748d2cb36c179634eb7f45986336482619 Mon Sep 17 00:00:00 2001 From: Maksim Sukharev Date: Tue, 12 Sep 2023 14:51:06 +0200 Subject: [PATCH] fixup! make CurrentParticipants.vue a visual component, move logic to the parent Signed-off-by: Maksim Sukharev --- src/components/RightSidebar/Participants/ParticipantsTab.vue | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/components/RightSidebar/Participants/ParticipantsTab.vue b/src/components/RightSidebar/Participants/ParticipantsTab.vue index a5e9f9c9cedc..4f3437a7ff12 100644 --- a/src/components/RightSidebar/Participants/ParticipantsTab.vue +++ b/src/components/RightSidebar/Participants/ParticipantsTab.vue @@ -119,10 +119,6 @@ export default { }, filteredParticipants() { - if (!this.isSearching) { - return this.participants - } - const isMatch = (string) => string.toLowerCase().includes(this.searchText.toLowerCase()) return this.participants.filter(participant => {