diff --git a/src/runtime/components/forms/SelectCustom.vue b/src/runtime/components/forms/SelectCustom.vue index 9e28616b..ee8556f7 100644 --- a/src/runtime/components/forms/SelectCustom.vue +++ b/src/runtime/components/forms/SelectCustom.vue @@ -60,7 +60,7 @@ - +
  • @@ -69,7 +69,7 @@
  • -

    +

    No results found for "{{ query }}". @@ -306,13 +306,6 @@ const filteredOptions = computed(() => ) const queryOption = computed(() => { - if (!props.creatable) { - return null - } - if (!query.value) { - return null - } - return query.value === '' ? null : { [props.textAttribute]: query.value } })