From 83a042d662fed98e6f5dee69217c0cbd21983066 Mon Sep 17 00:00:00 2001 From: Eric Date: Mon, 25 May 2026 19:47:55 -0700 Subject: [PATCH] =?UTF-8?q?[eric]=20windows:=20drop=20invalid=20autoCorrec?= =?UTF-8?q?t=20+=20autoCapitalize=20attrs=20from=20contentEditable=20div?= =?UTF-8?q?=20in=20EditorSurface=20=E2=80=94=20diag=20logs=20pinpointed=20?= =?UTF-8?q?ChatInput=20as=20the=20last=20child=20rendered=20before=20every?= =?UTF-8?q?=200xC0000005=20segfault,=20and=20these=20attributes=20are=20sp?= =?UTF-8?q?ec-defined=20for=20input/textarea=20only=20so=20React=20forward?= =?UTF-8?q?ed=20them=20onto=20a=20div=20where=20Chromium=20144=20+=20Windo?= =?UTF-8?q?ws=20IME=20/=20spellchecker=20engages=20a=20native=20code=20pat?= =?UTF-8?q?h=20that=20segfaults=20during=20commit;=20spellCheck=20stays=20?= =?UTF-8?q?for=20spelling=20underlines;=20retag=20v1.1.44?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/app/pages/AgentChat/ChatInput/view/EditorSurface.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/frontend/src/app/pages/AgentChat/ChatInput/view/EditorSurface.tsx b/frontend/src/app/pages/AgentChat/ChatInput/view/EditorSurface.tsx index 507b92cd..746a3b7c 100644 --- a/frontend/src/app/pages/AgentChat/ChatInput/view/EditorSurface.tsx +++ b/frontend/src/app/pages/AgentChat/ChatInput/view/EditorSurface.tsx @@ -30,8 +30,6 @@ export const EditorSurface: React.FC = ({ contentEditable={!disabled} suppressContentEditableWarning spellCheck - autoCorrect="on" - autoCapitalize="sentences" onInput={onInput} onClick={onClick} onKeyDown={onKeyDown}