Skip to content

Commit

Permalink
fix(dropdown.tsx): modified isOpen prop on ArrowIconContainer in drop…
Browse files Browse the repository at this point in the history
…down
  • Loading branch information
j-leidy committed Jul 21, 2023
1 parent a8a87ea commit 49af051
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Dropdown/Dropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -848,7 +848,7 @@ const Dropdown = ({
const infoIcons = (
<>
{values.length > 0 && valueCountCloseIconHandler()}
<StyledArrowIconContainer ref={arrowIconRef} {...arrowIconProps} isOpen={{ isOpen }}>
<StyledArrowIconContainer ref={arrowIconRef} {...arrowIconProps} isOpen={isOpen}>
<Icon path={isOpen ? mdiMenuUp : mdiMenuDown} size="1.25em" />
</StyledArrowIconContainer>
</>
Expand Down

0 comments on commit 49af051

Please sign in to comment.