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
This wasn't happening in 1.7.13 and is causing a good amount of friction in our codebase to overcome this issue: we need to pass the multiple prop to single select comboboxes, and treat the selected model value as an array of a single value just to avoid this code.
What package within Headless UI are you using?
@headlessui/vue
What version of that package are you using?
latest
What browser are you using?
Chrome
Reproduction URL
https://codesandbox.io/p/devbox/thirsty-glitter-9gdtjq
Describe your issue
When blurring the combobox input, the combox autoselects the active option.
This is problematic as the user intention is not to set an option, but to leave it empty.
Screen.Recording.2025-08-01.at.10.04.32.AM.mov
Problematic code:
https://github.com/tailwindlabs/headlessui/blob/main/packages/%40headlessui-vue/src/components/combobox/combobox.ts#L1244-L1246
This wasn't happening in 1.7.13 and is causing a good amount of friction in our codebase to overcome this issue: we need to pass the
multipleprop to single select comboboxes, and treat the selected model value as an array of a single value just to avoid this code.