diff --git a/src/webcomponents/variant/variant-browser-horizontal-filter.js b/src/webcomponents/variant/variant-browser-horizontal-filter.js index 748bc98e9..d5bcb9e4e 100644 --- a/src/webcomponents/variant/variant-browser-horizontal-filter.js +++ b/src/webcomponents/variant/variant-browser-horizontal-filter.js @@ -83,6 +83,9 @@ export default class VariantBrowserHorizontalFilter extends LitElement { defaultFilter: { type: Object, }, + searchActive: { + type: Boolean, + }, config: { type: Object, }, @@ -94,6 +97,8 @@ export default class VariantBrowserHorizontalFilter extends LitElement { this._config = this.getDefaultConfig(); this.query = {}; + this.searchActive = true; + this.queryList = []; this.preparedQuery = {}; @@ -1200,7 +1205,7 @@ export default class VariantBrowserHorizontalFilter extends LitElement {
-