Skip to content

Commit

Permalink
Merge pull request #7431 from RocketChat/fix-show-email
Browse files Browse the repository at this point in the history
[FIX] Fix Emails in User Admin View
  • Loading branch information
engelgabriel authored and rodrigok committed Jul 14, 2017
1 parent 9aba96e commit 167809c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/rocketchat-ui-admin/client/users/adminUsers.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Template.adminUsers.helpers({
}
},
emailAddress() {
return _.map(this.emails, function(e) { e.address; }).join(', ');
return _.map(this.emails, function(e) { return e.address; }).join(', ');
},
flexData() {
return {
Expand Down

0 comments on commit 167809c

Please sign in to comment.