diff --git a/src/rust/lqosd/src/node_manager/js_build/src/graphs/dashboard_graph.js b/src/rust/lqosd/src/node_manager/js_build/src/graphs/dashboard_graph.js index bf4e2ae2..14e4340c 100644 --- a/src/rust/lqosd/src/node_manager/js_build/src/graphs/dashboard_graph.js +++ b/src/rust/lqosd/src/node_manager/js_build/src/graphs/dashboard_graph.js @@ -2,11 +2,9 @@ import {isDarkMode} from "../helpers/dark_mode"; export class DashboardGraph { constructor(id) { - let theme = "macarons"; - if (isDarkMode()) theme = "dark"; this.id = id; this.dom = document.getElementById(id); - this.chart = echarts.init(this.dom, theme); + this.chart = echarts.init(this.dom); this.chart.showLoading(); this.option = {}; }