Skip to content

Commit

Permalink
fix(Dropdown): missing mouseenter event on container
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincanac committed Mar 27, 2024
1 parent 878f707 commit 7288953
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/components/elements/Dropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</slot>
</HMenuButton>

<div v-if="open && items.length" ref="container" :class="[ui.container, ui.width]" :style="containerStyle">
<div v-if="open && items.length" ref="container" :class="[ui.container, ui.width]" :style="containerStyle" @mouseenter="onMouseEnter">
<Transition appear v-bind="ui.transition">
<div>
<div v-if="popper.arrow" data-popper-arrow :class="Object.values(ui.arrow)" />
Expand Down

0 comments on commit 7288953

Please sign in to comment.