Fix short formatting of cards for mail editor

This commit is contained in:
Francis Lachapelle
2014-12-16 14:26:31 -05:00
parent 473d788012
commit 27059ad4a8

View File

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