Skip to content

Commit

Permalink
Fixed #4434 - DataTable: VirtualScroller breaks when sort is applied
Browse files Browse the repository at this point in the history
  • Loading branch information
mertsincan committed Dec 20, 2023
1 parent e6cb685 commit cdd2a0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/datatable/DataTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit cdd2a0e

Please sign in to comment.