[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

@@ -247,12 +247,16 @@ export default withRouter(class CreateSet extends React.Component {
name={`term_${index}`}
onChange={this.onTermInputChange}
autoComplete="off"
autoCapitalize="none"
autoCorrect="off"
/>
<input
type="text"
name={`definition_${index}`}
onChange={this.onDefinitionInputChange}
autoComplete="off"
autoCapitalize="none"
autoCorrect="off"
/>
</div>
)}