diff --git a/Libraries/Components/TextInput/TextInput.js b/Libraries/Components/TextInput/TextInput.js index bf988f593..46dfb6a4b 100644 --- a/Libraries/Components/TextInput/TextInput.js +++ b/Libraries/Components/TextInput/TextInput.js @@ -80,7 +80,7 @@ var TextInputAndroidAttributes = { multiline: true, password: true, placeholder: true, - value: true, + text: true, testID: true, }; @@ -521,7 +521,7 @@ var TextInput = React.createClass({ onSubmitEditing={this.props.onSubmitEditing} password={this.props.password || this.props.secureTextEntry} placeholder={this.props.placeholder} - value={this.state.bufferedValue} + text={this.state.bufferedValue} />; return (