From dd4faf429721f76f2294c1906f0f4b267c1f4647 Mon Sep 17 00:00:00 2001 From: alexfront Date: Wed, 5 Aug 2020 14:29:09 +0300 Subject: [PATCH] Preventing Input's spellchecking Signed-off-by: alexfront --- src/renderer/components/input/input.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/renderer/components/input/input.tsx b/src/renderer/components/input/input.tsx index 7502850c3a..a8fd532dde 100644 --- a/src/renderer/components/input/input.tsx +++ b/src/renderer/components/input/input.tsx @@ -285,6 +285,7 @@ export class Input extends React.Component { rows: multiLine ? (rows || 1) : null, ref: this.bindRef, type: "text", + spellCheck: "false", }); return (