Fix short formatting of cards for mail editor

This commit is contained in:
Francis Lachapelle
2015-06-11 15:42:34 -04:00
parent 5db79ce218
commit 32196b56db
@@ -249,7 +249,7 @@
var fullname = this.$fullname(),
email = this.$preferredEmail(partial);
if (email && email != fullname)
fullname += ' (' + email + ')';
fullname += ' <' + email + '>';
return fullname;
};