diff options
author | Jefferson Stachelski <jstachel@thoughtworks.com> | 2015-11-13 19:43:05 -0200 |
---|---|---|
committer | Jefferson Stachelski <jstachel@thoughtworks.com> | 2015-11-13 19:43:05 -0200 |
commit | b118801b2c166e65f6d0f27e475cb0a12a1df3a2 (patch) | |
tree | 9516a46cabdfa8d9f7f4b3678ef30e6d695fd71a /web-ui/app/js | |
parent | c8e25d72118c6299424e4483f96707182ced9e27 (diff) |
Issue #525 - Fixed no mail on sent after sending it
Diffstat (limited to 'web-ui/app/js')
-rw-r--r-- | web-ui/app/js/mixins/with_mail_edit_base.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web-ui/app/js/mixins/with_mail_edit_base.js b/web-ui/app/js/mixins/with_mail_edit_base.js index 17753cf3..f6d52eaf 100644 --- a/web-ui/app/js/mixins/with_mail_edit_base.js +++ b/web-ui/app/js/mixins/with_mail_edit_base.js @@ -125,7 +125,7 @@ define( }; this.trim_recipient = function(recipients) { - recipients.map(function(recipient) { + return recipients.map(function(recipient) { return recipient.trim(); }); }; |