#3858 #3896 - fix row grouping with pagination (#4011)

Co-authored-by: kyle-zadara <kyle.sabine@zadarastorage.com>
pull/4295/head
kyle-zadara 2023-08-18 07:12:05 +05:30 committed by GitHub
parent d402b12e9c
commit 7529764482
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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) {