소스 검색

Fixed - Missing trailing comma comma-dangle

Thuan Pham Quoc 7 년 전
부모
커밋
b3eab212ae
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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();