Skip to content

Commit

Permalink
Fixed missing null from getContentAnchorEl.
Browse files Browse the repository at this point in the history
  • Loading branch information
duvet86 committed Aug 17, 2018
1 parent 96d2c38 commit 92c75e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/material-ui/src/Popover/Popover.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export interface PopoverProps
anchorReference?: PopoverReference;
children?: React.ReactNode;
elevation?: number;
getContentAnchorEl?: (element: HTMLElement) => HTMLElement;
getContentAnchorEl?: null | ((element: HTMLElement) => HTMLElement);
marginThreshold?: number;
modal?: boolean;
ModalClasses?: ModalClassKey;
Expand Down

0 comments on commit 92c75e9

Please sign in to comment.