chore(react-select): autofocus → autoFocus (#2550)

This commit is contained in:
Julien Fontanet 2018-01-08 09:40:35 +01:00 committed by GitHub
parent db5d495105
commit 82240979c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@ export default class SelectPlainObject extends Component {
return ( return (
<Select <Select
autofocus={props.autoFocus} autoFocus={props.autoFocus}
disabled={props.disabled} disabled={props.disabled}
multi={props.multi} multi={props.multi}
onChange={this._handleChange} onChange={this._handleChange}

View File

@ -248,7 +248,7 @@ export class GenericSelect extends Component {
const select = ( const select = (
<Select <Select
{...{ {...{
autofocus: autoFocus, autoFocus,
clearable, clearable,
disabled, disabled,
multi, multi,