You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 27, 2023. It is now read-only.
Everything works fine as long as I am just selecting items from the list. But as soon as I enter a search string, my search string is included into the data - each character is transformed into an object key.
I know this is neither a VDF bug nor a PrimeVue bug - but somehow they don't play together well.
Test both elements in my sample application:
Enter "Aus" and select "Australia" from the list.
The element will now have [ "A", "u", "s", { "code": "AU", "name": "Australia" } ] as its value.
Expected behavior
"Australia" should be added to the autocomplete element. Its value should be [{ "code": "AU", "name": "Australia" } ]