forked from Techsystech/web
[FIX] web_timeline: Don't crash when restoring timeline from breadcrumb
parent
c3b3c8b72f
commit
92eedca5d9
|
@ -44,8 +44,8 @@ odoo.define("web_timeline.TimelineController", function(require) {
|
|||
adjust_window: true,
|
||||
});
|
||||
const domains = params.domain;
|
||||
const contexts = params.context;
|
||||
const group_bys = params.groupBy;
|
||||
const contexts = params.context || [];
|
||||
const group_bys = params.groupBy || [];
|
||||
this.last_domains = domains;
|
||||
this.last_contexts = contexts;
|
||||
// Select the group by
|
||||
|
|
Loading…
Reference in New Issue