diff options
| author | Roger Braun <rbraun@Bobble.local> | 2017-12-05 11:49:40 +0100 |
|---|---|---|
| committer | Roger Braun <rbraun@Bobble.local> | 2017-12-05 11:49:40 +0100 |
| commit | 6ad27959a696ea0e4f6fe43a98daf4b99bb973ff (patch) | |
| tree | eb37ccc174aa344aadccabff25341cc0b7047f4e /src | |
| parent | 27be1e0fa3a9779a624012a8528801679721cb40 (diff) | |
Linting.
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/chat/chat.js | 6 |
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 |
