Skip to content

Commit

Permalink
Merge pull request #360 from yaroslavafenkin/JENKINS-74775
Browse files Browse the repository at this point in the history
[JENKINS-74775] Remove unnecessary template strings in `render-configurable-trend-chart.js`
  • Loading branch information
uhafner authored Oct 28, 2024
2 parents db5db0f + 041c4d4 commit b2a594c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ window.addEventListener("DOMContentLoaded", () => {
const configurationId = dataHolder.getAttribute("data-configuration-id");
const generatedId = dataHolder.getAttribute("data-generated-id");

echartsJenkinsApi.renderConfigurableTrendChart(`${chartId}`, `${enableLinks}`, `${configurationId}`, window[`trendProxy${generatedId}`]);
echartsJenkinsApi.renderConfigurableTrendChart(chartId, enableLinks, configurationId, window[`trendProxy${generatedId}`]);
});
});

0 comments on commit b2a594c

Please sign in to comment.