Fix short formatting of cards for mail editor

pull/91/head
Francis Lachapelle 2014-12-16 14:26:31 -05:00
parent 5db79ce218
commit 32196b56db
1 changed files with 1 additions and 1 deletions

View File

@ -249,7 +249,7 @@
var fullname = this.$fullname(),
email = this.$preferredEmail(partial);
if (email && email != fullname)
fullname += ' (' + email + ')';
fullname += ' <' + email + '>';
return fullname;
};