From 49aa2d5fb7e13398c2fde83966cb8ae2fe228008 Mon Sep 17 00:00:00 2001 From: shpuld Date: Wed, 11 Apr 2018 00:19:28 +0300 Subject: [PATCH] cleanup --- src/components/chat_panel/chat_panel.js | 1 - src/components/chat_panel/chat_panel.vue | 22 ++++++---------------- 2 files changed, 6 insertions(+), 17 deletions(-) diff --git a/src/components/chat_panel/chat_panel.js b/src/components/chat_panel/chat_panel.js index afde7352..d528d0a1 100644 --- a/src/components/chat_panel/chat_panel.js +++ b/src/components/chat_panel/chat_panel.js @@ -13,7 +13,6 @@ const chatPanel = { }, methods: { submit (message) { - console.log(this.currentMessage) this.$store.state.chat.channel.push('new_msg', {text: message}, 10000) this.currentMessage = '' }, diff --git a/src/components/chat_panel/chat_panel.vue b/src/components/chat_panel/chat_panel.vue index 9339dfb6..969088f4 100644 --- a/src/components/chat_panel/chat_panel.vue +++ b/src/components/chat_panel/chat_panel.vue @@ -24,9 +24,7 @@
-
- -
+
@@ -77,19 +75,11 @@ .chat-input { display: flex; - form { - flex: auto; - display: flex; - input { - margin: 0.5em; - width: fill-available; - } - textarea { - flex: 1; - margin: 0.6em; - min-height: 3.5em; - resize: none; - } + textarea { + flex: 1; + margin: 0.6em; + min-height: 3.5em; + resize: none; } }