diff --git a/gui_vue/src/components/chat.vue b/gui_vue/src/components/chat.vue index f863b29f..8ebb3f9c 100644 --- a/gui_vue/src/components/chat.vue +++ b/gui_vue/src/components/chat.vue @@ -26,23 +26,13 @@ import {updateAllChat, newMessage} from '../js/chatHandler' updateAllChat() - - function transmitNewMessage(){ - console.log(chat.inputText) - console.log(chat.selectedCallsign) - newMessage(chat.selectedCallsign, chat.inputText) // finally do a cleanup chat.inputText = '' - - } - - -