summaryrefslogtreecommitdiff
path: root/web-ui
diff options
context:
space:
mode:
authorJefferson Stachelski <jeffhsta@riseup.net>2016-02-12 18:03:30 -0200
committerJefferson Stachelski <jeffhsta@riseup.net>2016-02-12 18:03:30 -0200
commit84d8828a60f44f2e5a6f08f2192782c30e25144f (patch)
treee3bd10247c4777cd636e9a733aa276ad36dbb8a0 /web-ui
parenta9626c697992fcd596726a4c16ba8c9757f6a0dd (diff)
enable remove attachment from forward email
Issue #549
Diffstat (limited to 'web-ui')
-rw-r--r--web-ui/app/js/mail_view/ui/forward_box.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/web-ui/app/js/mail_view/ui/forward_box.js b/web-ui/app/js/mail_view/ui/forward_box.js
index 5acef337..659968e5 100644
--- a/web-ui/app/js/mail_view/ui/forward_box.js
+++ b/web-ui/app/js/mail_view/ui/forward_box.js
@@ -64,8 +64,7 @@ define(
this.convertToRemovableAttachments = function(attachments) {
return attachments.map(function(attachment) {
- attachment.removable = false; // don't show this button until the bug is fixed
- attachment.received = true;
+ attachment.removable = true;
return attachment;
});
};