Skip to content
Snippets Groups Projects
Commit 8ab700fc authored by Hubert Van de Walle (huvw)'s avatar Hubert Van de Walle (huvw)
Browse files

[FIX] web: prevent error if subscriptions.update is undefined


Steps to follow

- Install web_dashboard,website_sale
- Go to the eCommerce Dashboard
- Click on Favorites
- Click on Add to my dashboard
- Go to the Dashboard app
- Click on orders
-> A traceback occurs

Cause of the issue

`this.subscriptions.update` is undefined

opw-2630849

closes odoo/odoo#75719

Signed-off-by: default avatarHubert Van De Walle <hubvd@users.noreply.github.com>
parent f21c741e
No related branches found
No related tags found
No related merge requests found
......@@ -429,7 +429,7 @@ odoo.define("web/static/src/js/model.js", function (require) {
*/
async _notifyComponents() {
const rev = ++this.rev;
const subscriptions = this.subscriptions.update;
const subscriptions = this.subscriptions.update || [];
const groups = partitionBy(subscriptions, (s) =>
s.owner ? s.owner.__owl__.depth : -1
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment