Fixed #4434 - DataTable: VirtualScroller breaks when sort is applied

This commit is contained in:
mertsincan 2023-12-20 15:20:57 +00:00
parent e6cb68526f
commit cdd2a0e6e4

View file

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