Removes addQueryPrefix, as there is already one before calling it.

This commit is contained in:
Mateus Machado Luna 2018-10-16 11:52:01 -03:00
parent af03314501
commit e0cf6dd276
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, { addQueryPrefix: true }); url += qs.stringify(query_items);
} }
return axios.get(url) return axios.get(url)