Skip to content

Commit

Permalink
fix: popover not binding attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
zernonia committed Feb 28, 2025
1 parent 0e8907c commit 1c0609a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/Popover/PopoverContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ rootContext.contentId ||= useId(undefined, 'reka-popover-content')
<Presence :present="forceMount || rootContext.open.value">
<PopoverContentModal
v-if="rootContext.modal.value"
v-bind="forwarded"
v-bind="{ ...forwarded, ...$attrs }"
:ref="forwardRef"
>
<slot />
</PopoverContentModal>
<PopoverContentNonModal
v-else
v-bind="forwarded"
v-bind="{ ...forwarded, ...$attrs }"
:ref="forwardRef"
>
<slot />
Expand Down

0 comments on commit 1c0609a

Please sign in to comment.