We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
activeOption
1 parent e6136aa commit a3ca52eCopy full SHA for a3ca52e
packages/@headlessui-vue/CHANGELOG.md
@@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
8
## [Unreleased]
9
10
-- Nothing yet!
+- Fix Combobox `activeOption` render prop ([#2973](https://github.com/tailwindlabs/headlessui/pull/2973))
11
12
## [1.7.18] - 2024-02-02
13
packages/@headlessui-vue/src/components/combobox/combobox.ts
@@ -725,7 +725,7 @@ export let Combobox = defineComponent({
725
? null
726
: api.virtual.value
727
? api.virtual.value.options[api.activeOptionIndex.value ?? 0]
728
- : api.options.value[api.activeOptionIndex.value]?.dataRef.value.value ?? null,
+ : api.options.value[api.activeOptionIndex.value]?.dataRef.value ?? null,
729
value: value.value,
730
}
731
0 commit comments