Skip to content

Commit

Permalink
Merge pull request Expensify#24094 from hoangzinh/df/23378
Browse files Browse the repository at this point in the history
Fix - Tooltip show email instead of display name when hover in remaining users avatar in a group
  • Loading branch information
techievivek authored Aug 7, 2023
2 parents 21146e5 + d30d9e0 commit 8e608db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/ReportUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -878,7 +878,7 @@ function getIconsForParticipants(participants, personalDetails) {
const avatarSource = UserUtils.getAvatar(lodashGet(personalDetails, [accountID, 'avatar'], ''), accountID);
participantDetails.push([
accountID,
lodashGet(personalDetails, [accountID, 'login'], lodashGet(personalDetails, [accountID, 'displayName'], '')),
lodashGet(personalDetails, [accountID, 'displayName']) || lodashGet(personalDetails, [accountID, 'login'], ''),
lodashGet(personalDetails, [accountID, 'firstName'], ''),
avatarSource,
]);
Expand Down

0 comments on commit 8e608db

Please sign in to comment.