Skip to content

Commit 753ab35

Browse files
authored
[Benchmarks] Fix GitHub commit link in chart clicks (#20286)
Fixes clicking on data points in the dashboard tracing to a wrong url.
1 parent 30215eb commit 753ab35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

devops/scripts/benchmarks/html/scripts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ function createChart(data, containerId, type) {
345345
if (elements.length > 0) {
346346
const point = elements[0].element.$context.raw;
347347
if (point.gitHash && point.gitRepo) {
348-
window.open(`https://github.com/${point.gitRepo}/commit/${point.gitHash}`, '_blank');
348+
window.open(`${point.gitRepo}/commit/${point.gitHash}`, '_blank');
349349
}
350350
}
351351
};

0 commit comments

Comments
 (0)