We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e43c4f5 commit f7e3fd3Copy full SHA for f7e3fd3
source/views/components/cells/textfield.js
@@ -32,6 +32,7 @@ export class CellTextField extends React.Component {
32
_ref: () => {},
33
returnKeyType: 'default',
34
secureTextEntry: false,
35
+ autoCapitalize: 'none',
36
}
37
38
props: {
@@ -79,7 +80,7 @@ export class CellTextField extends React.Component {
79
80
cellAccessoryView={
81
<TextInput
82
ref={this.cacheRef}
- autoCapitalize={this.props.autoCapitalize || 'none'}
83
+ autoCapitalize={this.props.autoCapitalize}
84
autoCorrect={false}
85
clearButtonMode="while-editing"
86
disabled={this.props.disabled}
0 commit comments