Merge pull request #7226 from henrynguyen7/patch-1
Fix multi-row range selection on lazily paginated multi-selection Datatable (#7227)pull/7281/head
commit
39ab3d65db
|
@ -1178,8 +1178,8 @@ export default {
|
|||
}
|
||||
|
||||
if (this.lazy && this.paginator) {
|
||||
rangeStart -= this.first;
|
||||
rangeEnd -= this.first;
|
||||
rangeStart -= this.d_first;
|
||||
rangeEnd -= this.d_first;
|
||||
}
|
||||
|
||||
const value = this.processedData;
|
||||
|
|
Loading…
Reference in New Issue