Skip to content

Commit

Permalink
fix: linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mtdvlpr authored and pirog committed Feb 29, 2024
1 parent fabae07 commit 750b539
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/VPLTeamMembersItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,10 @@ const getLink = member => {
};
const getAvatarTitle = member => {
let avatarTitle = `${member.name}`
if (member.email) avatarTitle += ` <${member.email}>`
if (member.commits) avatarTitle += ` - ${Number.parseInt(member.commits, 10)} commits`
return avatarTitle
let avatarTitle = `${member.name}`;
if (member.email) avatarTitle += ` <${member.email}>`;
if (member.commits) avatarTitle += ` - ${Number.parseInt(member.commits, 10)} commits`;
return avatarTitle;
};
</script>
Expand Down

0 comments on commit 750b539

Please sign in to comment.