in assets/ml-metrics.js [292:303]
function loadData(dataUrl) {
fetch(dataUrl)
.then(response => response.json())
.then(data => {
window.data = data.query_result.data.rows;
fixupMLNaming();
window.data.sort((a, b) => new Date(a.date) - new Date(b.date));
displayContent();
})
.catch(error => console.error('Error loading the JSON file:', error));
}