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 committed Jul 7, 2017
2 parents a3b64c0 + a7f2e6b commit b46dcc7
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 b46dcc7

Please sign in to comment.