Skip to content

Commit 063b936

Browse files
Potential fix for code scanning alert no. 69: Semicolon insertion (#1154)
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
1 parent b9f0bf3 commit 063b936

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/js/histogram.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ function drawHistogram(data, containerId, options) {
268268
const chart = document.getElementById(`${options.metric}-chart`);
269269
callOnceWhenVisible(chart, () => {
270270
drawChart(series, containerId, options);
271-
})
271+
});
272272
}
273273

274274
function drawChart(series, containerId, options) {

0 commit comments

Comments
 (0)