diff options
author | Thuan Pham Quoc <thuanpq.io@gmail.com> | 2017-12-01 15:15:44 +0700 |
---|---|---|
committer | Thuan Pham Quoc <thuanpq.io@gmail.com> | 2017-12-01 15:15:44 +0700 |
commit | b3eab212aefc0012311cb59452c47a2627e5f472 (patch) | |
tree | 1a9732fc45c6486fdc9dfc91990319f57ad379f5 /client | |
parent | 6d9d18367460141b00f4e8e706e6294e0ba35675 (diff) | |
download | wekan-b3eab212aefc0012311cb59452c47a2627e5f472.tar.gz wekan-b3eab212aefc0012311cb59452c47a2627e5f472.tar.bz2 wekan-b3eab212aefc0012311cb59452c47a2627e5f472.zip |
Fixed - Missing trailing comma comma-dangle
Diffstat (limited to 'client')
-rw-r--r-- | client/components/users/userHeader.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/components/users/userHeader.js b/client/components/users/userHeader.js index dbdee6a0..ccb09148 100644 --- a/client/components/users/userHeader.js +++ b/client/components/users/userHeader.js @@ -45,7 +45,7 @@ Template.editProfilePopup.events({ $set: { 'profile.fullname': fullname, 'profile.initials': initials, - } + }, }); isChangeUserName = username !== Meteor.user().username; isChangeEmail = email.toLowerCase() !== Meteor.user().emails[0].address.toLowerCase(); |