From 5678c5f86247472848997b184f42ffc41ff4018a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandre=20K=C3=BChn?= <aku@odoo.com> Date: Mon, 21 Mar 2022 14:22:11 +0000 Subject: [PATCH] [IMP] mail: guard ChatterComponent MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Task-2797754 closes odoo/odoo#86783 Signed-off-by: Alexandre Kühn (aku) <aku@odoo.com> --- addons/mail/static/src/components/chatter/chatter.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/addons/mail/static/src/components/chatter/chatter.xml b/addons/mail/static/src/components/chatter/chatter.xml index ff4225b4d009..4f9b1d804231 100644 --- a/addons/mail/static/src/components/chatter/chatter.xml +++ b/addons/mail/static/src/components/chatter/chatter.xml @@ -2,8 +2,8 @@ <templates xml:space="preserve"> <t t-name="mail.Chatter" owl="1"> - <div class="o_Chatter position-relative flex-grow-1 flex-column d-flex w-100 bg-white" t-attf-class="{{ className }}" t-ref="root"> - <t t-if="chatter"> + <t t-if="chatter"> + <div class="o_Chatter position-relative flex-grow-1 flex-column d-flex w-100 bg-white" t-attf-class="{{ className }}" t-ref="root"> <div class="o_Chatter_fixedPanel"> <ChatterTopbar className="'o_Chatter_topbar'" @@ -41,8 +41,8 @@ /> </t> </div> - </t> - </div> + </div> + </t> </t> </templates> -- GitLab