Skip to content

Commit

Permalink
fix(lint): add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
pd4d10 committed Apr 2, 2018
1 parent 8f4c41b commit bacdaf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/module/component/avatar.component.ts
Expand Up @@ -90,7 +90,7 @@ export class AvatarComponent implements OnInit, OnChanges {
const nameLetters = nameInitials.slice(0, 3).join('');
this.letter = nameLetters.toUpperCase();
} else {
this.letter = this.name[0]
this.letter = this.name[0];
}
} else if (this.email && this.email.length) {
const emailInitials = this.email.split('@')[0].match(/\b(\w)/g);
Expand Down

0 comments on commit bacdaf6

Please sign in to comment.