Skip to content

Commit

Permalink
disable mobile browser autocorrect in repl (#210)
Browse files Browse the repository at this point in the history
fixes #209
  • Loading branch information
ngwese authored Jun 3, 2021
1 parent 5bbb369 commit 9062028
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion web/src/repl.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,9 @@ class ReplInput extends Component {
}}
onKeyDown={this.onKeyDown}
spellCheck={false}
// autoFocus={true}
autoCapitalize="off"
autoCorrect="off"
autoComplete="off"
rows={1}
/>
</div>
Expand Down

0 comments on commit 9062028

Please sign in to comment.