From cea07697f3b6ad62a4a96fe12410bd1dcbbd8709 Mon Sep 17 00:00:00 2001 From: gabek Date: Mon, 12 Jul 2021 17:25:14 +0000 Subject: [PATCH] Prettified Code! --- webroot/js/components/chat/chat-input.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webroot/js/components/chat/chat-input.js b/webroot/js/components/chat/chat-input.js index 5ac0b8c77..6b4048fe9 100644 --- a/webroot/js/components/chat/chat-input.js +++ b/webroot/js/components/chat/chat-input.js @@ -281,7 +281,8 @@ export default class ChatInput extends Component { } render(props, state) { - const { hasSentFirstChatMessage, inputCharsLeft, inputHTML, emojiPicker } = state; + const { hasSentFirstChatMessage, inputCharsLeft, inputHTML, emojiPicker } = + state; const { inputEnabled } = props; const emojiButtonStyle = { display: emojiPicker && inputCharsLeft > 0 ? 'block' : 'none',