diff options
| author | Shpuld Shpuldson <shpuld@gmail.com> | 2017-04-12 19:07:55 +0300 |
|---|---|---|
| committer | Shpuld Shpuldson <shpuld@gmail.com> | 2017-04-12 19:07:55 +0300 |
| commit | c9891703219607c19069ff26a4956a7636e5ab3a (patch) | |
| tree | 250fdd20f89bd89e21514947b5f2f3841384e073 /src/components/conversation/conversation.js | |
| parent | 3f477986cfe3dcf0077f45c263b152d0b96cb0f0 (diff) | |
lint fixes
Diffstat (limited to 'src/components/conversation/conversation.js')
| -rw-r--r-- | src/components/conversation/conversation.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/conversation/conversation.js b/src/components/conversation/conversation.js index fa042d23..f3aeb216 100644 --- a/src/components/conversation/conversation.js +++ b/src/components/conversation/conversation.js @@ -8,7 +8,7 @@ const sortAndFilterConversation = (conversation) => { } const conversation = { - data() { + data () { return { highlight: this.statusoid.id } @@ -60,8 +60,8 @@ const conversation = { return (id === this.statusoid.id) } }, - setHighlight(id) { - this.highlight = id + setHighlight (id) { + this.highlight = Number(id) } } } |
