diff options
author | Thais Siqueira <thais.siqueira@gmail.com> | 2016-10-05 15:57:19 -0300 |
---|---|---|
committer | Thais Siqueira <thais.siqueira@gmail.com> | 2016-10-05 17:22:51 -0300 |
commit | 17bffc43635b2b250beb6eaddd77db87a831370c (patch) | |
tree | 08af695273bdb99c36656eb63bf4e364c6595e70 /web-ui/app/js/mail_view | |
parent | 7c42ffabe06f11bca3a0458ab34ee9d8ec3cc74b (diff) |
Removes the 'Not signed' label from sent mail view
We folowed the same approach of encrypted label and set the signed
attribute as 'undefined' when we are on the sent mail view.
Diffstat (limited to 'web-ui/app/js/mail_view')
-rw-r--r-- | web-ui/app/js/mail_view/ui/mail_view.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/web-ui/app/js/mail_view/ui/mail_view.js b/web-ui/app/js/mail_view/ui/mail_view.js index b5a5f632..3408c8af 100644 --- a/web-ui/app/js/mail_view/ui/mail_view.js +++ b/web-ui/app/js/mail_view/ui/mail_view.js @@ -59,6 +59,7 @@ define( if(data.mail.mailbox === 'sent') { encrypted = undefined; + signed = undefined; } this.$node.html(templates.mails.fullView({ |