From 81bf79e95e6e43c4b604e1ef20527032af22667b Mon Sep 17 00:00:00 2001 From: Daniel Kluge Date: Mon, 13 Jun 2022 14:49:01 +0200 Subject: [PATCH] Autocompletion off on cli --- components/REPL/REPLInput.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/REPL/REPLInput.tsx b/components/REPL/REPLInput.tsx index 441d921..df59dfa 100644 --- a/components/REPL/REPLInput.tsx +++ b/components/REPL/REPLInput.tsx @@ -144,7 +144,7 @@ const REPLInput: NextPage = ({historyCallback, historyClear, in return
- } className={styles.in} type={"text"} onChange={replinOnChange} onKeyDown={keyEvent} spellCheck={"false"} autoFocus maxLength={20} /> + } className={styles.in} type={"text"} onChange={replinOnChange} onKeyDown={keyEvent} spellCheck={"false"} autoComplete={"off"} autoFocus maxLength={20} />
;