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: away and raiseHands 'reactions' being hidden by avatar image #19266

Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,9 @@ class UserListItem extends PureComponent {
size: '1.3rem',
};

let userAvatarFiltered = user.avatar;
const userAvatarFiltered = (user.raiseHand === true || user.away === true || user.reaction !== 'none')
? ''
: user.avatar;

const emojiIcons = [
{
Expand All @@ -661,7 +663,6 @@ class UserListItem extends PureComponent {
} if (user.emoji !== 'none' && user.emoji !== 'notAway') {
return <Icon iconName={normalizeEmojiName(user.emoji)} />;
} if (user.reaction !== 'none') {
userAvatarFiltered = '';
return user.reaction;
} if (user.name) {
return user.name.toLowerCase().slice(0, 2);
Expand Down