Tower: upload web_notify 16.0.3.2.0 (via marketplace)

This commit is contained in:
2026-04-27 08:47:29 +00:00
parent 1c6d6b1dcc
commit 18dd9c7a1f

View File

@@ -0,0 +1,12 @@
/** @odoo-module */
import {Notification} from "@web/core/notifications/notification";
import {patch} from "web.utils";
patch(Notification.props, "webNotifyProps", {
type: {
type: String,
optional: true,
validate: (t) =>
["warning", "danger", "success", "info", "default"].includes(t),
},
});