mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +00:00
Fixed #4434 - DataTable: VirtualScroller breaks when sort is applied
This commit is contained in:
parent
e6cb68526f
commit
cdd2a0e6e4
1 changed files with 1 additions and 1 deletions
|
@ -2045,7 +2045,7 @@ export default {
|
|||
processedData() {
|
||||
let data = this.value || [];
|
||||
|
||||
if (!this.lazy) {
|
||||
if (!this.lazy && !this.virtualScrollerOptions?.lazy) {
|
||||
if (data && data.length) {
|
||||
if (this.hasFilters) {
|
||||
data = this.filter(data);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue