aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Braun <rbraun@Bobble.local>2017-12-05 11:49:40 +0100
committerRoger Braun <rbraun@Bobble.local>2017-12-05 11:49:40 +0100
commit6ad27959a696ea0e4f6fe43a98daf4b99bb973ff (patch)
treeeb37ccc174aa344aadccabff25341cc0b7047f4e
parent27be1e0fa3a9779a624012a8528801679721cb40 (diff)
Linting.
-rw-r--r--src/components/chat/chat.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/chat/chat.js b/src/components/chat/chat.js
index fc942a30..ef326d4a 100644
--- a/src/components/chat/chat.js
+++ b/src/components/chat/chat.js
@@ -11,11 +11,11 @@ const chat = {
}
},
methods: {
- submit(message) {
+ submit (message) {
this.$store.state.chat.channel.push('new_msg', {text: message}, 10000)
- this.currentMessage = '';
+ this.currentMessage = ''
}
}
}
-export default chat;
+export default chat