Skip to content

Commit

Permalink
replace current user with You in reactions popover
Browse files Browse the repository at this point in the history
  • Loading branch information
Pujan92 committed Jun 12, 2023
1 parent 297e5aa commit 0d55c1c
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 @@ -166,7 +166,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 0d55c1c

Please sign in to comment.