Fixed an issue with sort + filter giving wrong data
parent
1c1b495a9a
commit
ea527d407f
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue