pull/7281/head
tugcekucukoglu 2025-02-19 13:28:28 +03:00
parent d474e51aca
commit 4aac2c5c5f
1 changed files with 4 additions and 4 deletions

View File

@ -2017,14 +2017,14 @@ export default {
if (!this.lazy && !this.virtualScrollerOptions?.lazy) {
if (data && data.length) {
if (this.hasFilters) {
data = this.filter(data);
}
if (this.sorted) {
if (this.sortMode === 'single') data = this.sortSingle(data);
else if (this.sortMode === 'multiple') data = this.sortMultiple(data);
}
if (this.hasFilters) {
data = this.filter(data);
}
}
}