Skip to content

Commit

Permalink
fix: use the correct login variable inside getAllParticipants function
Browse files Browse the repository at this point in the history
  • Loading branch information
allroundexperts committed Mar 30, 2023
1 parent 1d3f069 commit 0a994ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/ReportParticipantsPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const getAllParticipants = (report, personalDetails) => {
login,
text: userPersonalDetail.displayName,
tooltipText: userLogin,
participantsList: [{login: userLogin, displayName: userPersonalDetail.displayName}],
participantsList: [{login, displayName: userPersonalDetail.displayName}],
});
});
};
Expand Down

0 comments on commit 0a994ce

Please sign in to comment.