Skip to content

Commit eb78645

Browse files
committed
Merge pull request #33 from react-bootstrap/modal-fix
[fixed] clean up modal styles if unmounted during exit transition
2 parents be0eea6 + f633476 commit eb78645

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Modal.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,9 @@ const Modal = React.createClass({
276276
},
277277

278278
componentWillUnmount() {
279-
if (this.props.show) {
279+
let { show, transition } = this.props;
280+
281+
if (show || (transition && !this.state.exited)) {
280282
this.onHide();
281283
}
282284
},

0 commit comments

Comments
 (0)