Skip to content

Commit f46a654

Browse files
committed
fix buy
1 parent 34e9581 commit f46a654

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/compounds/Dropdown/DropdownItem.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ const Component = {
4949
return props.hasLink ? false : props.focusable
5050
})
5151
52-
const { selectItem } = inject(DropdownSymbol)
52+
const { selectItem: reportParent } = inject(DropdownSymbol)
5353
5454
const selectItem = () => {
5555
if (!isClickable.value) return
56-
selectItem(props.value)
56+
reportParent(props.value)
5757
}
5858
5959
return {

0 commit comments

Comments
 (0)