view vehicles

This commit is contained in:
Alexandro Uc Santos
2024-01-12 13:16:55 -06:00
parent 937c3a8fe5
commit c315f8814e
8 changed files with 314 additions and 8 deletions

View File

@@ -41,7 +41,7 @@
const search = () => {
if(query.value.length >= 2){
// filterQuery.value = "company_name[$regex]=" + query.value + "&company_name[$options]=i";
filterQuery.value.search = "branch_name[$regex]="+ query.value +"&branch_name[$options]=i";;
filterQuery.value.search = "branch_name[$regex]="+ query.value +"&branch_name[$options]=i";
getLocationsWithFilters(filterQuery.value);
}