forked from verdnatura/salix-front
Reviewed-on: verdnatura/salix-front#102 Reviewed-by: Alex Moreno <alexm@verdnatura.es>
This commit is contained in:
commit
81ff6a68da
|
@ -41,13 +41,13 @@ onMounted(() => {
|
|||
|
||||
const isLoading = ref(false);
|
||||
async function search() {
|
||||
const params = JSON.parse(JSON.stringify(userParams.value));
|
||||
for (const param in params) {
|
||||
if (params[param] === '' || params[param] === null) {
|
||||
for (const param in userParams.value) {
|
||||
if (userParams.value[param] === '' || userParams.value[param] === null) {
|
||||
delete userParams.value[param];
|
||||
delete store.userParams[param];
|
||||
}
|
||||
}
|
||||
const params = { ...userParams.value };
|
||||
isLoading.value = true;
|
||||
await arrayData.addFilter({ params });
|
||||
if (!props.showAll && !Object.values(params).length) store.data = [];
|
||||
|
|
Loading…
Reference in New Issue