From 200717f7792d4ff073632bddf58e4af1a953cddb Mon Sep 17 00:00:00 2001 From: Peter Zimon Date: Thu, 7 Jul 2022 17:47:34 +0200 Subject: [PATCH] Making add form width dynamic based on comment count --- apps/comments-ui/src/components/AddForm.js | 4 ++-- apps/comments-ui/src/components/CommentsBox.js | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/apps/comments-ui/src/components/AddForm.js b/apps/comments-ui/src/components/AddForm.js index 0e27e24b3a..6bd1fe4426 100644 --- a/apps/comments-ui/src/components/AddForm.js +++ b/apps/comments-ui/src/components/AddForm.js @@ -52,7 +52,7 @@ const AddForm = (props) => { }; return ( -
+
@@ -62,7 +62,7 @@ const AddForm = (props) => { onChange={handleChange} onFocus={handleFocus} onBlur={handleBlur} - autofocus={true} + autoFocus={false} placeholder='Join the discussion' />
- { this.context.member ? : } + { this.context.member ? : }
);