Skip to content

Commit

Permalink
Update x-pack/plugins/ingest_manager/public/applications/ingest_manag…
Browse files Browse the repository at this point in the history
…er/components/context_menu_actions.tsx

Co-authored-by: Jen Huang <its.jenetic@gmail.com>
  • Loading branch information
nchaulet and jen-huang authored Jul 21, 2020
1 parent 22ebc7f commit 5a47dd3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export const ContextMenuActions: React.FunctionComponent<Props> = ({
/>
)
}
isOpen={typeof isOpen !== 'undefined' ? isOpen : isOpenState}
isOpen={isOpen === undefined ? isOpenState : isOpen}
closePopover={handleCloseMenu}
>
{'items' in props ? (
Expand Down

0 comments on commit 5a47dd3

Please sign in to comment.