Skip to content

Commit

Permalink
Make EuiOverlayMask children optional (#1937)
Browse files Browse the repository at this point in the history
* make children optional

* CL
  • Loading branch information
thompsongl authored May 9, 2019
1 parent 022c74a commit 8915ce0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

- Removed unused prop enum of `l` in `EuiButton` ([#1936](https://github.com/elastic/eui/pull/1936))
- Fixed `EuiSelect` browser event inconsistencies by normalizing `mouseup` propagation ([#1926](https://github.com/elastic/eui/pull/1926))
- Removed `children` as a required prop for `EuiOverlayMask` ([#1937](https://github.com/elastic/eui/pull/1937))

## [`11.0.1`](https://github.com/elastic/eui/tree/v11.0.1)

Expand Down
2 changes: 1 addition & 1 deletion src/components/overlay_mask/overlay_mask.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { CommonProps, keysOf, Omit } from '../common';

export interface EuiOverlayMaskProps {
onClick?: () => void;
children: ReactNode;
children?: ReactNode;
}

export type Props = CommonProps &
Expand Down

0 comments on commit 8915ce0

Please sign in to comment.