Browse Source

Fixed - Missing trailing comma comma-dangle

Thuan Pham Quoc 7 years ago
parent
commit
b3eab212ae
1 changed files with 1 additions and 1 deletions
  1. 1 1
      client/components/users/userHeader.js

+ 1 - 1
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();