Adding autocapitalize to web/RX.TextInput

This commit is contained in:
David de Regt 2020-01-30 18:33:07 -08:00
Родитель 5b9ad4c5f6
Коммит b507c2667b
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -265,6 +265,7 @@ export class TextInput extends React.Component<Types.TextInputProps, TextInputSt
className={ className }
autoCapitalize={ this.props.autoCapitalize }
autoCorrect={ this.props.autoCorrect === false ? 'off' : undefined }
spellCheck={ spellCheck }
disabled={ !editable }