#6657 fixSummaryDescriptor #175

Merged
jorgep merged 4 commits from 6657-fixSummaryDescriptor into dev 2024-02-08 12:22:52 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 9393e05bd1 - Show all commits

View File

@ -79,7 +79,7 @@ onMounted(() => {
if ($props.url && $props.modelValue) fetchFilter($props.modelValue);
});
async function filter(val, options) {
function filter(val, options) {
const search = val.toString().toLowerCase();
if (!search) return options;
@ -119,7 +119,7 @@ async function filterHandler(val, update) {
myOptions.value = await fetchFilter(val);
return;
}
myOptions.value = await filter(val, myOptionsOriginal.value);
myOptions.value = filter(val, myOptionsOriginal.value);
},
(ref) => {
if (val !== '' && ref.options.length > 0) {