Skip to content

Commit

Permalink
fix(core/presentation): make hidePopover prop optional in HoverablePo…
Browse files Browse the repository at this point in the history
…pover Component type (#9043)
  • Loading branch information
christopherthielen committed Mar 26, 2021
1 parent 36250ab commit a7ec358
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import './HoverablePopover.css';

export interface IHoverablePopoverContentsProps extends IHoverablePopoverProps {
// The popover contents can forcibly hide the popover by calling this function
hidePopover: () => void;
hidePopover?: () => void;
}

export interface IHoverablePopoverProps extends React.HTMLProps<any> {
Expand Down

0 comments on commit a7ec358

Please sign in to comment.