We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fbe7f5 commit da82d4fCopy full SHA for da82d4f
packages/core/src/data-grid/data-grid-render.tsx
@@ -427,7 +427,7 @@ function drawGridLines(
427
if (c.width === 0) continue;
428
x += c.width;
429
const tx = c.sticky ? x : x + translateX;
430
- if (tx >= minX && tx <= maxX - 1 && verticalBorder(index + 1)) {
+ if (tx >= minX && tx <= maxX && verticalBorder(index + 1)) {
431
toDraw.push({
432
x1: tx,
433
y1: Math.max(groupHeaderHeight, minY),
0 commit comments