Skip to content

Commit

Permalink
Merge pull request #20584 from Pujan92/fix/20267
Browse files Browse the repository at this point in the history
Fix: Chat - Email address is displayed instead of 'You' when pulling up the reaction detail
  • Loading branch information
Hayata Suenaga authored Jun 15, 2023
2 parents 9ea7b45 + 0d55c1c commit 4ec610b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/home/report/ReactionList/PopoverReactionList.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ class PopoverReactionList extends React.Component {
const emoji = _.find(emojis, (e) => e.name === selectedReaction.emoji);
const emojiCodes = EmojiUtils.getUniqueEmojiCodes(emoji, selectedReaction.users);
const hasUserReacted = Report.hasAccountIDReacted(this.props.currentUserPersonalDetails.accountID, reactionUsers);
const users = PersonalDetailsUtils.getPersonalDetailsByIDs(reactionUsers);
const users = PersonalDetailsUtils.getPersonalDetailsByIDs(reactionUsers, this.props.currentUserPersonalDetails.accountID, true);
return {
emojiCount,
emojiCodes,
Expand Down

0 comments on commit 4ec610b

Please sign in to comment.