From 73f578192e453f7f8d276604017625b5e712b875 Mon Sep 17 00:00:00 2001 From: Nicolas Lempereur <nle@odoo.com> Date: Thu, 18 Feb 2021 09:55:27 +0000 Subject: [PATCH] [FIX] web_editor: have video button even if sanitized If a field is sanitized, a6e2b484e2 would hide the video button because the video does not show in backend. It is better for the consistency but if the field appear in frontend, the video would still show so we prevent something that worked (but is very not user friendly when editing in backend). This changeset go back to the previous behavior (keeping the code simplification), at one point there should be a fix so at least when editing we see the video (currently we see an empty div in given conditions). opw-2463746 closes odoo/odoo#66434 Signed-off-by: Nicolas Lempereur (nle) <nle@odoo.com> --- addons/web_editor/static/src/js/backend/field_html.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/web_editor/static/src/js/backend/field_html.js b/addons/web_editor/static/src/js/backend/field_html.js index 9e6d67ffb1fe..31dae3620118 100644 --- a/addons/web_editor/static/src/js/backend/field_html.js +++ b/addons/web_editor/static/src/js/backend/field_html.js @@ -225,7 +225,7 @@ var FieldHtml = basic_fields.DebouncedField.extend(TranslatableFieldMixin, { toolbar.splice(-1, 0, ['view', ['codeview']]); } } - if (self.field.sanitize && self.field.sanitize_tags) { + if (self.model === "mail.compose.message" || self.model === "mailing.mailing") { options.noVideos = true; } options.prettifyHtml = false; -- GitLab