Fix reaction selector doesn't focus msg input (#62)
authorAjay Bura <ajbura@gmail.com>
Mon, 25 Oct 2021 11:58:14 +0000 (17:28 +0530)
committerAjay Bura <ajbura@gmail.com>
Mon, 25 Oct 2021 11:58:14 +0000 (17:28 +0530)
Signed-off-by: Ajay Bura <ajbura@gmail.com>
src/app/organisms/room/RoomViewInput.jsx

index 5ca4fdd3edae37683793c7e21e1fa15385ab461b..6d4a22f684febd750a454dfb03179a56ab6f5050 100644 (file)
@@ -313,6 +313,7 @@ function RoomViewInput({
 
   function addEmoji(emoji) {
     textAreaRef.current.value += emoji.unicode;
+    textAreaRef.current.focus();
   }
 
   function handleUploadClick() {