Skip to content

Commit

Permalink
primefaces#3858 primefaces#3896 - fix row grouping with pagination
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle-zadara committed Jun 1, 2023
1 parent 511db53 commit 0d5c3d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/datatable/TableBody.vue
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ export default {
getRowIndex(index) {
const getItemOptions = this.getVirtualScrollerProp('getItemOptions');
return getItemOptions ? getItemOptions(index).index : this.first + index;
return getItemOptions ? getItemOptions(index).index : index;
},
getRowStyle(rowData) {
if (this.rowStyle) {
Expand Down

0 comments on commit 0d5c3d0

Please sign in to comment.