[se] Fix TypedMapCache.getData endIndex

This commit is contained in:
Sergey Konovalov
2025-11-13 20:59:51 +03:00
parent ec68f327e7
commit 51df4af421

View File

@ -2932,8 +2932,8 @@ function (window, undefined) {
}
const arr = axisData[rowCol].data[value.type].get(value.value);
arr.push(index);
axisData[rowCol].end += 1;
});
axisData[rowCol].end = endIndex;
} else {
if (startIndex < axisData[rowCol].start) {
const c1 = bHor ? startIndex : rowCol;
@ -2991,8 +2991,8 @@ function (window, undefined) {
}
const arr = axisData[rowCol].data[value.type].get(value.value);
arr.push(index);
axisData[rowCol].end += 1;
});
axisData[rowCol].end = endIndex;
}
}
return axisData[rowCol].data[type];