From 90620287e91c3824234c92cfacc5f51ffde0d12b Mon Sep 17 00:00:00 2001 From: Greg Wuller Date: Wed, 2 Jun 2021 21:22:20 -0700 Subject: [PATCH] disable mobile browser autocorrect in repl (#210) fixes #209 --- web/src/repl.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web/src/repl.js b/web/src/repl.js index 55de5f6..6f127ba 100644 --- a/web/src/repl.js +++ b/web/src/repl.js @@ -107,7 +107,9 @@ class ReplInput extends Component { }} onKeyDown={this.onKeyDown} spellCheck={false} - // autoFocus={true} + autoCapitalize="off" + autoCorrect="off" + autoComplete="off" rows={1} />