Adds query prefix: true

This commit is contained in:
weryques 2018-09-17 10:15:31 -03:00
parent 36429417b3
commit 5ba817e6a8
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ export const filter_type_mixin = {
} else if(search){ } else if(search){
url += `search=${search}&` + qs.stringify(query_items); url += `search=${search}&` + qs.stringify(query_items);
} else { } else {
url += qs.stringify(query_items); url += qs.stringify(query_items, { addQueryPrefix: true });
} }
return axios.get(url) return axios.get(url)