From ac59253213c67bc4d8da74b8c6f5dba53b1150bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5var=20Aamb=C3=B8=20Fosstveit?= Date: Thu, 16 Jan 2020 14:07:52 +0100 Subject: [PATCH] Fix the chat send button. --- app/src/components/MeetingDrawer/Chat/ChatInput.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/components/MeetingDrawer/Chat/ChatInput.js b/app/src/components/MeetingDrawer/Chat/ChatInput.js index f84af96..5be44e9 100644 --- a/app/src/components/MeetingDrawer/Chat/ChatInput.js +++ b/app/src/components/MeetingDrawer/Chat/ChatInput.js @@ -93,7 +93,7 @@ const ChatInput = (props) => { if (message && message !== '') { - const sendMessage = this.createNewMessage(message, 'response', displayName, picture); + const sendMessage = createNewMessage(message, 'response', displayName, picture); roomClient.sendChatMessage(sendMessage);