Skip to content

Commit 77b6b9a

Browse files
committed
fix(InputMenu): prevent focus-outside event on content
Resolves nuxt/ui-pro#960
1 parent 2b98363 commit 77b6b9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/runtime/components/InputMenu.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ defineExpose({
494494
</ComboboxAnchor>
495495

496496
<ComboboxPortal v-bind="portalProps">
497-
<ComboboxContent :class="ui.content({ class: props.ui?.content })" v-bind="contentProps">
497+
<ComboboxContent :class="ui.content({ class: props.ui?.content })" v-bind="contentProps" @focus-outside.prevent>
498498
<slot name="content-top" />
499499

500500
<ComboboxEmpty :class="ui.empty({ class: props.ui?.empty })">

0 commit comments

Comments
 (0)