Skip to content

Commit

Permalink
fix: mails
Browse files Browse the repository at this point in the history
  • Loading branch information
maranmaran committed Oct 20, 2024
1 parent 7a5fa3b commit 4fd1906
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export class MailSettingsService {
formatBankAccounts(bankAccounts: BankAccount[]) {
return `
<ul>
${bankAccounts.filter(ba => ba.visible).map(ba => `<li>${ba.name} - ${ba.account}</li>`)}
${bankAccounts.filter(ba => ba.visible).map(ba => `<li>${ba.name} - ${ba.account}</li>`).join('')}
</ul>
`;
}
Expand Down

0 comments on commit 4fd1906

Please sign in to comment.