From 3ff0a226b4a2a64e65d30ac84a35afef277f8bae Mon Sep 17 00:00:00 2001 From: Carlos Roca Date: Mon, 6 Mar 2023 16:42:13 +0100 Subject: [PATCH] [FIX] web_timeline: css and styles not charged when rendering timeline On library version update a new feature was added at Timeline creation level to allow modifying the xss. By keeping it active the css classes are not showed As the view is on backend, has no sense to keep it active. So we deactivate the feature to allow show the timeline correctly. TT40299 --- web_timeline/static/src/js/timeline_renderer.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/web_timeline/static/src/js/timeline_renderer.js b/web_timeline/static/src/js/timeline_renderer.js index a49531d45..590a8449c 100644 --- a/web_timeline/static/src/js/timeline_renderer.js +++ b/web_timeline/static/src/js/timeline_renderer.js @@ -227,7 +227,11 @@ odoo.define("web_timeline.TimelineRenderer", function (require) { this.qweb.add_template(tmpl); } - this.timeline = new vis.Timeline(this.$timeline.get(0)); + this.timeline = new vis.Timeline( + this.$timeline.get(0), + {}, + {xss: {disabled: true}} + ); this.timeline.setOptions(this.options); if (this.mode && this["on_scale_" + this.mode + "_clicked"]) { this["on_scale_" + this.mode + "_clicked"]();