Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarco Ambrosini <marcoambrosini@pm.me>2020-08-27 12:00:32 +0300
committerMarco Ambrosini <marcoambrosini@pm.me>2020-08-27 12:00:32 +0300
commitb206aee94ef9450542dbfc87148d2d926fe1c233 (patch)
tree247cd621be0969c9c072de15c5a2e355877e0c81 /src
parentb8eeb9aa104bb3f3f2221370a10458f74fb26fbd (diff)
Do not show the status in the new group conversation flow
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
Diffstat (limited to 'src')
-rw-r--r--src/components/AvatarWrapper/AvatarWrapper.vue6
-rw-r--r--src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue1
2 files changed, 7 insertions, 0 deletions
diff --git a/src/components/AvatarWrapper/AvatarWrapper.vue b/src/components/AvatarWrapper/AvatarWrapper.vue
index e813ab490..88c5b1e34 100644
--- a/src/components/AvatarWrapper/AvatarWrapper.vue
+++ b/src/components/AvatarWrapper/AvatarWrapper.vue
@@ -32,6 +32,7 @@
menu-position="left"
:disable-tooltip="disableTooltip"
:disable-menu="disableMenu"
+ :show-user-status="showUserStatus"
:size="size" />
<div v-else
class="guest"
@@ -81,6 +82,11 @@ export default {
type: Boolean,
default: false,
},
+
+ showUserStatus: {
+ type: Boolean,
+ default: true,
+ },
},
computed: {
// Determines which icon is displayed
diff --git a/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue b/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue
index 29372fb05..eaccda594 100644
--- a/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue
+++ b/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue
@@ -32,6 +32,7 @@
:id="computedId"
:disable-tooltip="true"
:size="44"
+ :show-user-status="!isSearched"
:name="computedName"
:source="participant.source"
:offline="isOffline" />