Wrap modal content in div to prevent flexbox layout
This commit is contained in:
parent
17d13c3a93
commit
7eaeeeefb4
1 changed files with 3 additions and 1 deletions
|
@ -49,7 +49,9 @@ var Modal = React.createClass({
|
|||
|
||||
return (
|
||||
<ReactModal {...props}>
|
||||
{this.props.children}
|
||||
<div>
|
||||
{this.props.children}
|
||||
</div>
|
||||
{buttons}
|
||||
</ReactModal>
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue