From 7dbe95bbe338ed0e6e8246ec9c73223cf642acec Mon Sep 17 00:00:00 2001 From: "Yadier A. De Quesada" Date: Fri, 2 Jun 2023 16:57:52 -0400 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. TT43238 --- 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"]();