Skip to content

Commit a5c5566

Browse files
MKirovaMKirova
authored andcommitted
chore(*): Add some integration tests.
1 parent 91c457b commit a5c5566

File tree

2 files changed

+341
-121
lines changed

2 files changed

+341
-121
lines changed

projects/igniteui-angular/src/lib/grids/grid-base.directive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3891,7 +3891,7 @@ export abstract class IgxGridBaseDirective implements GridType,
38913891
const rec = prevDataView[index];
38923892
if (rec.cellMergeMeta &&
38933893
// index + maxRowSpan is within view
3894-
startIndex <= (index + Math.max(...rec.cellMergeMeta.values().toArray().map(x => x.rowSpan)))) {
3894+
startIndex < (index + Math.max(...rec.cellMergeMeta.values().toArray().map(x => x.rowSpan)))) {
38953895
data.push({record: rec, index: index });
38963896
}
38973897
}

0 commit comments

Comments
 (0)