Skip to content
Snippets Groups Projects
Commit 0eadaa92 authored by Guilhem CARRON's avatar Guilhem CARRON
Browse files

fix(annuaire): Remove filter to empty request

parent 116bc80c
No related branches found
No related tags found
3 merge requests!418V2.1.0,!400V2.0,!230V2.0
......@@ -172,8 +172,8 @@ export class SearchBarComponent implements OnInit, OnChanges {
this.countCheckedFilters();
this.searchEvent.emit({
queryParam: inputTerm,
jobFilters: this.jobFilterChecked,
employerFilter: this.employerFilterChecked,
jobFilters: this.checkedFilterList.length ? this.jobFilterChecked : [],
employerFilter: this.checkedFilterList.length ? this.employerFilterChecked : [],
});
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment