Autofocus not working if element inside Reactstrap Modal
- version
4.2.0
- components:
Modal
Example
import {Modal} from 'reactstrap'
render () {
const {handleSubmit} = this.props
return (
<Modal isOpen={true}>
<form onSubmit={handleSubmit}>
<fieldset>
<input name="email" type="email" label="Email Address" />
<input name="password" type="password" label="Password" autoFocus={true} />
<button type="submit">Press me</button>
</fieldset>
</form>
</Modal>
)
}
Autofocus not working if element inside Reactstrap Modal
4.2.0ModalExample