From 6cb29e434ab7c9298067c5f26f19f767276eed27 Mon Sep 17 00:00:00 2001 From: Simon Backx Date: Fri, 8 Jul 2022 13:24:50 +0200 Subject: [PATCH] Fixed reply Form autofocus --- apps/comments-ui/src/components/Form.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/comments-ui/src/components/Form.js b/apps/comments-ui/src/components/Form.js index db7943f250..cdaa6856d5 100644 --- a/apps/comments-ui/src/components/Form.js +++ b/apps/comments-ui/src/components/Form.js @@ -12,7 +12,7 @@ const Form = (props) => { if (props.isReply) { config = { placeholder: 'Reply to comment', - autofocus: false + autofocus: true }; } else if (props.isEdit) { config = {