Skip to content
This repository was archived by the owner on Jun 17, 2023. It is now read-only.

Commit ae6fe93

Browse files
lh0x00TheSharpieOne
authored andcommitted
fix(Modal): update condition to call setFocus in case open mo… (reactstrap#1514)
1 parent 01f474f commit ae6fe93

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

src/Modal.js

+8-7
Original file line numberDiff line numberDiff line change
@@ -105,17 +105,18 @@ class Modal extends React.Component {
105105
}
106106

107107
componentDidMount() {
108-
if (this.props.isOpen) {
108+
const { isOpen, autoFocus, onEnter } = this.props;
109+
110+
if (isOpen) {
109111
this.init();
110112
this.setState({ isOpen: true })
113+
if (autoFocus) {
114+
this.setFocus();
115+
}
111116
}
112117

113-
if (this.props.onEnter) {
114-
this.props.onEnter();
115-
}
116-
117-
if (this.state.isOpen && this.props.autoFocus) {
118-
this.setFocus();
118+
if (onEnter) {
119+
onEnter();
119120
}
120121

121122
this._isMounted = true;

0 commit comments

Comments
 (0)