From 4d2fbc062fc2582ffc300654895afefee59d5dce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patryk=20Kami=C5=84ski?= Date: Mon, 6 Oct 2025 15:34:31 +0000 Subject: [PATCH] [Benchmarks] Fix GitHub commit link in chart clicks --- devops/scripts/benchmarks/html/scripts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devops/scripts/benchmarks/html/scripts.js b/devops/scripts/benchmarks/html/scripts.js index acd38b8de380c..65046d0ceafc4 100644 --- a/devops/scripts/benchmarks/html/scripts.js +++ b/devops/scripts/benchmarks/html/scripts.js @@ -345,7 +345,7 @@ function createChart(data, containerId, type) { if (elements.length > 0) { const point = elements[0].element.$context.raw; if (point.gitHash && point.gitRepo) { - window.open(`https://github.com/${point.gitRepo}/commit/${point.gitHash}`, '_blank'); + window.open(`${point.gitRepo}/commit/${point.gitHash}`, '_blank'); } } };