mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 09:22: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() {
|
processedData() {
|
||||||
let data = this.value || [];
|
let data = this.value || [];
|
||||||
|
|
||||||
if (!this.lazy) {
|
if (!this.lazy && !this.virtualScrollerOptions?.lazy) {
|
||||||
if (data && data.length) {
|
if (data && data.length) {
|
||||||
if (this.hasFilters) {
|
if (this.hasFilters) {
|
||||||
data = this.filter(data);
|
data = this.filter(data);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue