From 7588e3a20ed3739499d709ec47cf6e4978a36dd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Theys?= <seb@odoo.com> Date: Mon, 20 Jan 2020 11:20:21 +0000 Subject: [PATCH] [FIX] mail: reintroduce `fatype` for message status "envelope" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This was incorrectly reverted during 116057b26e71db4692280463669f3e80d813ddcc closes odoo/odoo#43564 X-original-commit: 73e3afca18fae954552d8cbecb6afddf1b08539b Signed-off-by: Sébastien Theys (seb) <seb@odoo.com> --- addons/mail/static/src/xml/thread.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/mail/static/src/xml/thread.xml b/addons/mail/static/src/xml/thread.xml index 4febfcca11f5..9384f5a01410 100644 --- a/addons/mail/static/src/xml/thread.xml +++ b/addons/mail/static/src/xml/thread.xml @@ -330,7 +330,7 @@ <t t-if="message.getCustomerEmailStatus() === 'sent' or message.getCustomerEmailStatus() === 'ready'"> <t t-set="fatype" t-value="'-o'"/> </t> - <i t-att-class="'o_thread_tooltip o_thread_message_email o_thread_message_email_' + message.getCustomerEmailStatus() + ' fa fa-envelope'" t-att-data-message-id="message.getID()"/> + <i t-att-class="'o_thread_tooltip o_thread_message_email o_thread_message_email_' + message.getCustomerEmailStatus() + ' fa fa-envelope' + fatype" t-att-data-message-id="message.getID()"/> </span> <span t-attf-class="o_thread_icons"> <t t-if="thread.hasSeenFeature()" t-call="mail.widget.Thread.Message.SeenIcon"/> -- GitLab