From 59e35932bc4e52121672189ebb619bd571a7594a Mon Sep 17 00:00:00 2001 From: Peter Zaoral Date: Sun, 14 Jun 2026 21:09:38 +0200 Subject: [PATCH] web_notify: remove unsupported messageIsHtml prop - Odoo 18 notification component uses strict OWL prop validation and does not accept messageIsHtml, the markup() wrapper already handles HTML rendering. Fixes: #3392 --- web_notify/static/src/js/services/notification_services.esm.js | 1 - 1 file changed, 1 deletion(-) diff --git a/web_notify/static/src/js/services/notification_services.esm.js b/web_notify/static/src/js/services/notification_services.esm.js index 4daabd3844e9..1ac2f71d69c1 100644 --- a/web_notify/static/src/js/services/notification_services.esm.js +++ b/web_notify/static/src/js/services/notification_services.esm.js @@ -29,7 +29,6 @@ export const webNotificationService = { type: notification.type, sticky: notification.sticky, className: notification.className, - messageIsHtml: notification.html, buttons: buttons.map((button) => { const onClick = button.onClick; button.onClick = async () => {