Skip to content

Commit 3170ec6

Browse files
committed
chore(*): update getAllVisibleSummariesRowIndexes method
1 parent 48fb85c commit 3170ec6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/igniteui-angular/src/lib/test-utils/grid-functions.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1654,7 +1654,7 @@ export class GridSummaryFunctions {
16541654
const summaries = GridSummaryFunctions.getAllVisibleSummaries(fix);
16551655
const rowIndexes = [];
16561656
summaries.forEach(summary => {
1657-
rowIndexes.push(Number(summary.attributes['data-rowindex']));
1657+
rowIndexes.push(Number(summary.nativeElement.attributes['data-rowindex'].value));
16581658
});
16591659
return rowIndexes.sort((a: number, b: number) => a - b);
16601660
}

0 commit comments

Comments
 (0)