This commit is contained in:
the-djmaze 2022-02-15 10:22:52 +01:00
parent 93190f4071
commit e2c171f302
6 changed files with 94 additions and 100 deletions

View file

@ -34,6 +34,6 @@ export class IdentityModel extends AbstractModel {
const name = this.name(),
email = this.email();
return name ? name + ' (' + email + ')' : email;
return name ? name + ' <' + email + '>' : email;
}
}