Skip to content

Commit

Permalink
#3858 #3896 - fix row grouping with pagination (#4011)
Browse files Browse the repository at this point in the history
Co-authored-by: kyle-zadara <[email protected]>
  • Loading branch information
kyle-zadara and kyle-zadara authored Aug 18, 2023
1 parent d402b12 commit 7529764
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 @@ -349,7 +349,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 7529764

Please sign in to comment.