using correct variable

This commit is contained in:
Miodec 2022-10-26 14:01:56 +02:00
parent ab008110bb
commit ea63e73b61

View file

@ -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}`);
}
}