From dceecb648ec643c297d5439726dd9e1ec646d447 Mon Sep 17 00:00:00 2001 From: Marco Ambrosini Date: Tue, 6 Jul 2021 17:45:50 +0200 Subject: [PATCH] Fix searchable conversations bug Signed-off-by: Marco Ambrosini --- .../LeftSidebar/ConversationsList/Conversation.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/LeftSidebar/ConversationsList/Conversation.vue b/src/components/LeftSidebar/ConversationsList/Conversation.vue index e3f9d3cd6d..4f4e792766 100644 --- a/src/components/LeftSidebar/ConversationsList/Conversation.vue +++ b/src/components/LeftSidebar/ConversationsList/Conversation.vue @@ -326,7 +326,11 @@ export default { }, isActive() { - return this.$store.getters.getToken() === this.to.params.token + if (!this.isSearchResult) { + return this.$store.getters.getToken() === this.to.params.token + } else { + return false + } }, }, methods: {