From 90a28484c0ff7fdd36d4380de4bedad5a57d7f05 Mon Sep 17 00:00:00 2001 From: DJ2LS Date: Wed, 20 Sep 2023 07:37:32 +0200 Subject: [PATCH] hide modules not ready --- gui_vue/src/components/chat.vue | 10 - gui_vue/src/components/chat_conversations.vue | 3 +- gui_vue/src/components/chat_navbar.vue | 231 +----------------- gui_vue/src/components/main.vue | 13 +- gui_vue/src/js/chatHandler.js | 2 +- 5 files changed, 19 insertions(+), 240 deletions(-) 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 = '' - - } - - -