Browse Source

Fix searchable conversations bug

Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
pull/5437/head
Marco Ambrosini 5 years ago
parent
commit
dceecb648e
  1. 6
      src/components/LeftSidebar/ConversationsList/Conversation.vue

6
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: {

Loading…
Cancel
Save