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.
1 parent 34e9581 commit f46a654Copy full SHA for f46a654
src/components/compounds/Dropdown/DropdownItem.vue
@@ -49,11 +49,11 @@ const Component = {
49
return props.hasLink ? false : props.focusable
50
})
51
52
- const { selectItem } = inject(DropdownSymbol)
+ const { selectItem: reportParent } = inject(DropdownSymbol)
53
54
const selectItem = () => {
55
if (!isClickable.value) return
56
- selectItem(props.value)
+ reportParent(props.value)
57
}
58
59
return {
0 commit comments