From 7f436227d90984f93d948630800f06302c0015f2 Mon Sep 17 00:00:00 2001 From: Chris Kruining Date: Fri, 3 Jan 2025 04:56:42 +0100 Subject: [PATCH] add auto writing direction to textareas --- src/features/file/grid.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/features/file/grid.tsx b/src/features/file/grid.tsx index 36d97d3..fc32a3e 100644 --- a/src/features/file/grid.tsx +++ b/src/features/file/grid.tsx @@ -106,6 +106,7 @@ const TextArea: Component<{ row: number, key: string, lang: string, value: strin lang={props.lang} placeholder={`${props.key} in ${props.lang}`} name={`${props.row}[${props.lang}]`} + dir="auto" spellcheck={true} wrap="soft" onkeyup={onKeyUp}