mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 09:44:59 +00:00
refactor: Simplify model label processing in quant-chart.js
This commit is contained in:
parent
7d1379fe9f
commit
8f41006eba
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ document.addEventListener('DOMContentLoaded', function () {
|
|||
|
||||
allData.forEach(function(row) {
|
||||
// Split model name on \n and join with actual line breaks
|
||||
chartData.labels.push(row.model.split('\\n').join('\n'));
|
||||
chartData.labels.push(row.model);
|
||||
chartData.datasets[0].data.push(row.pass_rate_2);
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue