Merge pull request #7226 from henrynguyen7/patch-1

Fix multi-row range selection on lazily paginated multi-selection Datatable (#7227)
pull/7281/head
Tuğçe Küçükoğlu 2025-02-19 15:08:06 +03:00 committed by GitHub
commit 39ab3d65db
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -1178,8 +1178,8 @@ export default {
} }
if (this.lazy && this.paginator) { if (this.lazy && this.paginator) {
rangeStart -= this.first; rangeStart -= this.d_first;
rangeEnd -= this.first; rangeEnd -= this.d_first;
} }
const value = this.processedData; const value = this.processedData;