Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the avatar of deleted users #2460

Merged
merged 1 commit into from Nov 14, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/components/MessagesList/MessagesGroup/AuthorAvatar.vue
Expand Up @@ -24,6 +24,10 @@
class="messages__avatar__icon"
:user="authorId"
:display-name="displayName" />
<div v-else-if="isDeletedUser"
class="avatar guest">
X
</div>
<div v-else-if="isGuest"
class="avatar guest">
{{ firstLetterOfGuestName }}
Expand Down Expand Up @@ -66,6 +70,9 @@ export default {
isUser() {
return this.authorType === 'users'
},
isDeletedUser() {
return this.authorType === 'deleted_users'
},
isGuest() {
return this.authorType === 'guests'
},
Expand Down