diff --git a/client/web/compose/src/components/Common/FilterToolbox.vue b/client/web/compose/src/components/Common/FilterToolbox.vue index 04b56745c..77c740b25 100644 --- a/client/web/compose/src/components/Common/FilterToolbox.vue +++ b/client/web/compose/src/components/Common/FilterToolbox.vue @@ -76,14 +76,13 @@ @@ -306,7 +307,7 @@ export default { // If no filterGroups, add default if (!this.componentFilter.length) { this.componentFilter.push(this.createDefaultFilterGroup(undefined, this.selectedField)) - } else if (!this.inFilter) { + } else if (this.selectedField && !this.inFilter) { this.addFilter(0) } },