summaryrefslogtreecommitdiffstats
path: root/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/components')
-rw-r--r--src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue b/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue
index 64584af47..7f90ae321 100644
--- a/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue
+++ b/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue
@@ -392,9 +392,9 @@ export default {
/**
* For now the user status is not overwriting the online-offline status anymore
* It felt too weird having users appear as offline but they are in the call or chat actively
- return this.participant.status === 'offline' || !this.sessionIds.length
+ return this.participant.status === 'offline' || !this.sessionIds.length && !this.isSearched
*/
- return !this.sessionIds.length
+ return !this.sessionIds.length && !this.isSearched
},
isGuest() {
return [PARTICIPANT.TYPE.GUEST, PARTICIPANT.TYPE.GUEST_MODERATOR].indexOf(this.participantType) !== -1