Fix issue with no $emit when no filters active

pull/4008/head
Andrew Guy 2023-06-22 18:01:34 +10:00
parent 3d98b017ed
commit 7073144f48
1 changed files with 1 additions and 5 deletions

View File

@ -871,10 +871,6 @@ export default {
let activeFilters = this.getActiveFilters(this.filters);
if (Object.keys(activeFilters).length == 0) {
return data;
}
this.clearEditingMetaData();
let globalFilterFieldsArray;
@ -939,7 +935,7 @@ export default {
}
}
if (filteredValue.length === this.value.length) {
if (filteredValue.length === this.value.length || Object.keys(activeFilters).length == 0) {
filteredValue = data;
}