From 0e61a93759999c891d06551f87f3e8708eb6bfcf Mon Sep 17 00:00:00 2001 From: Mattermost Build Date: Mon, 26 Aug 2024 14:50:44 +0200 Subject: [PATCH] Quick fix for post input not capitalizing the start of sentences (#8168) (#8173) 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' /> ); }