Fixed an issue with sort + filter giving wrong data

pull/1021/head
Cagatay Civici 2021-02-17 17:22:23 +03:00
parent 1c1b495a9a
commit ea527d407f
1 changed files with 2 additions and 2 deletions

View File

@ -589,7 +589,7 @@ export default {
} }
if (matches) { if (matches) {
filteredValue.push(this.value[i]); filteredValue.push(data[i]);
} }
} }
@ -1629,7 +1629,7 @@ export default {
}, },
processedData() { processedData() {
if (this.lazy) { if (this.lazy) {
return this.value; return this.value;
} }
else { else {
if (this.value && this.value.length) { if (this.value && this.value.length) {