[FIX] auto capitalisation on mobile

This commit is contained in:
2021-11-17 23:28:50 +00:00
parent 6548ed2626
commit e9433aa1fe
4 changed files with 14 additions and 0 deletions

View File

@@ -643,6 +643,8 @@ export default withRouter(class Progress extends React.Component {
value={this.state.answerInput}
ref={inputEl => (this.answerInput = inputEl)}
autoComplete="off"
autoCapitalize="none"
autoCorrect="off"
/>
<Button
onClick={() => this.processAnswer()}
@@ -793,6 +795,8 @@ export default withRouter(class Progress extends React.Component {
ref={inputEl => (this.answerInput = inputEl)}
readOnly
autoComplete="off"
autoCapitalize="none"
autoCorrect="off"
/>
<Button
onClick={() => this.nextQuestion()}