Skip to content

Commit b78ff54

Browse files
committed
fix(ComboBox): overlay props
1 parent f402373 commit b78ff54

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/components/fields/ComboBox/ComboBox.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -881,12 +881,15 @@ function ComboBoxOverlay({
881881
<DisplayTransition isShown={isOpen}>
882882
{({ phase, isShown, ref: transitionRef }) => (
883883
<ComboBoxOverlayWrapper
884-
{...mergeProps(overlayPositionProps, overlayBehaviorProps)}
884+
{...mergeProps(
885+
overlayPositionProps,
886+
overlayBehaviorProps,
887+
compositeFocusProps,
888+
)}
885889
ref={popoverRef}
886890
style={overlayPositionProps.style}
887891
>
888892
<ComboBoxOverlayElement
889-
{...compositeFocusProps}
890893
ref={transitionRef}
891894
data-placement={placementDirection}
892895
data-phase={phase}

0 commit comments

Comments
 (0)