Skip to content

Commit

Permalink
WEBUI-1047: Fix Clear button when swapping between drawer searches
Browse files Browse the repository at this point in the history
  • Loading branch information
rahuljain-dev committed May 23, 2023
1 parent a2ca89c commit ebb70ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion elements/search/nuxeo-search-form.js
Expand Up @@ -755,7 +755,7 @@ Polymer({
if (this.results && this.auto && this.visible && this._validate()) {
this.__fetchDebouncer = Debouncer.debounce(this.__fetchDebouncer, timeOut.after(300), () => {
this.results.reset();
this._fetch(this.results);
this._fetch(this.results).then(this._navigateToResults.bind(this));
});
}
},
Expand Down

0 comments on commit ebb70ff

Please sign in to comment.