Skip to content

Commit 44b3b9e

Browse files
committed
[fixed] when overlay animation is false the transition prop passed to base
overlay should be null so that it does not trigger a React PropTypes warning Signed-off-by: Charles Hansen <[email protected]>
1 parent 1173725 commit 44b3b9e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Overlay.js

+4
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ class Overlay extends React.Component {
1919
transition = Fade;
2020
}
2121

22+
if (transition === false) {
23+
transition = null;
24+
}
25+
2226
if (!transition) {
2327
child = cloneElement(child, {
2428
className: classNames('in', child.props.className)

0 commit comments

Comments
 (0)