Browse Source

Fixed - Missing trailing comma comma-dangle

Thuan Pham Quoc 7 năm trước cách đây
mục cha
commit
b3eab212ae
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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();