Files
web/web_notify/static/src/js/services/notification.esm.js
2024-10-07 15:14:47 +07:00

13 lines
332 B
JavaScript

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