Skip to content

Commit

Permalink
fix buy
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcedres committed Oct 6, 2020
1 parent 34e9581 commit f46a654
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/compounds/Dropdown/DropdownItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ const Component = {
return props.hasLink ? false : props.focusable
})
const { selectItem } = inject(DropdownSymbol)
const { selectItem: reportParent } = inject(DropdownSymbol)
const selectItem = () => {
if (!isClickable.value) return
selectItem(props.value)
reportParent(props.value)
}
return {
Expand Down

0 comments on commit f46a654

Please sign in to comment.