From 990a7b9c62dc65432cc6ce340636516917d8aa08 Mon Sep 17 00:00:00 2001 From: Mattermost Build Date: Mon, 26 Aug 2024 14:50:38 +0200 Subject: [PATCH] Quick fix for post input not capitalizing the start of sentences (#8168) (#8172) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit 8eba95ad5c0b9817edbde105c3882a3dbb71d5d9) Co-authored-by: Daniel Espino GarcĂ­a --- app/components/post_draft/post_input/post_input.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/app/components/post_draft/post_input/post_input.tsx b/app/components/post_draft/post_input/post_input.tsx index a82022d6540..756a05e7737 100644 --- a/app/components/post_draft/post_input/post_input.tsx +++ b/app/components/post_draft/post_input/post_input.tsx @@ -335,6 +335,7 @@ export default function PostInput({ underlineColorAndroid='transparent' textContentType='none' value={value} + autoCapitalize='sentences' /> ); }