forked from verdnatura/salix-front
Merge branch 'dev' of https://gitea.verdnatura.es/verdnatura/salix-front into 6657-fixSummaryDescriptor
This commit is contained in:
commit
9393e05bd1
|
@ -79,7 +79,7 @@ onMounted(() => {
|
||||||
if ($props.url && $props.modelValue) fetchFilter($props.modelValue);
|
if ($props.url && $props.modelValue) fetchFilter($props.modelValue);
|
||||||
});
|
});
|
||||||
|
|
||||||
async function filter(val, options) {
|
function filter(val, options) {
|
||||||
const search = val.toString().toLowerCase();
|
const search = val.toString().toLowerCase();
|
||||||
|
|
||||||
if (!search) return options;
|
if (!search) return options;
|
||||||
|
@ -119,7 +119,7 @@ async function filterHandler(val, update) {
|
||||||
myOptions.value = await fetchFilter(val);
|
myOptions.value = await fetchFilter(val);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
myOptions.value = await filter(val, myOptionsOriginal.value);
|
myOptions.value = filter(val, myOptionsOriginal.value);
|
||||||
},
|
},
|
||||||
(ref) => {
|
(ref) => {
|
||||||
if (val !== '' && ref.options.length > 0) {
|
if (val !== '' && ref.options.length > 0) {
|
||||||
|
|
Loading…
Reference in New Issue