Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions devops/scripts/benchmarks/html/scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -1803,9 +1803,10 @@ function loadData() {
loadingIndicator.classList.remove('hidden'); // Show loading indicator

if (typeof remoteDataUrl !== 'undefined' && remoteDataUrl !== '') {
console.log('Using remote data URL:', remoteDataUrl);
url = remoteDataUrl.endsWith('/') ? remoteDataUrl + 'data.json' : remoteDataUrl + '/data.json';
console.log('Using remote data URL:', url);
// Fetch data from remote URL
fetchAndProcessData(remoteDataUrl);
fetchAndProcessData(url);
} else {
console.log('Using local canonical data');
if (!Array.isArray(window.benchmarkRuns)) {
Expand Down