From 3eb61dca642ebfb45f3fad61757bf1532f989e56 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, a6e2b48 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#66920 X-original-commit: 73f5781 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 fbae41446af6..9c50fceeeb79 100644 --- a/addons/web_editor/static/src/js/backend/field_html.js +++ b/addons/web_editor/static/src/js/backend/field_html.js @@ -226,7 +226,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