Skip to content

Commit

Permalink
Fix .each input after using chaining
Browse files Browse the repository at this point in the history
  • Loading branch information
neil-marcellini committed Mar 31, 2023
1 parent 413dd0d commit 3817a80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/OptionsListUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ function getPersonalDetailsForLogins(logins, personalDetails) {

// Somehow it's possible for the logins coming from report.participants to contain undefined values so we use compact to remove them.
.compact()
.each(logins, (login) => {
.each((login) => {
let personalDetail = personalDetails[login];
if (!personalDetail) {
personalDetail = {
Expand Down

0 comments on commit 3817a80

Please sign in to comment.