mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-10-16 18:46:26 +08:00
using correct variable
This commit is contained in:
parent
ab008110bb
commit
ea63e73b61
1 changed files with 1 additions and 1 deletions
|
@ -713,7 +713,7 @@ function fillContent(): void {
|
|||
labels.push(`${bucket} - ${bucket + 9}`);
|
||||
if (bucket + 10 != parseInt(keys[i + 1])) {
|
||||
for (let j = bucket + 10; j < parseInt(keys[i + 1]); j += 10) {
|
||||
histogramChartDataBucketed.push({ x: i, y: 0 });
|
||||
histogramChartDataBucketed.push({ x: j, y: 0 });
|
||||
labels.push(`${j} - ${j + 9}`);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue