FIX: Trigger search app event being triggered multiple times (#25250)

This commit is contained in:
Keegan George 2024-01-15 09:47:40 -08:00 committed by GitHub
parent f2cf5434f3
commit f631eb5799
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -541,6 +541,10 @@ export default Controller.extend({
},
search(options = {}) {
if (this.searching) {
return;
}
if (options.collapseFilters) {
document
.querySelector("details.advanced-filters")