#7283: Fix Item module #1042

Merged
jon merged 11 commits from Fix-Items-Module into dev 2024-12-09 12:29:55 +00:00
1 changed files with 3 additions and 1 deletions
Showing only changes of commit f5f77a50bc - Show all commits

View File

@ -37,7 +37,7 @@ const $props = defineProps({
},
hiddenTags: {
type: Array,
default: () => ['filter', 'or', 'and'],
default: () => ['filter', 'search', 'or', 'and'],
Outdated
Review

Esto es de hiddenTags, mantener sin

Esto es de hiddenTags, mantener sin
},
customTags: {
type: Array,
@ -61,6 +61,7 @@ const emit = defineEmits([
'update:modelValue',
'refresh',
'clear',
'search',
'init',
'remove',
'setUserParams',
@ -127,6 +128,7 @@ async function search(evt) {
userParams.value = newParams;
if (!$props.showAll && !Object.values(filter).length) store.data = [];
emit('search');
} finally {
jon marked this conversation as resolved Outdated
Outdated
Review

Pq se quita?

Pq se quita?
isLoading.value = false;
}