lint fixes

This commit is contained in:
Shpuld Shpuldson 2017-04-12 19:07:55 +03:00
parent 3f477986cf
commit c989170321
2 changed files with 15 additions and 12 deletions

View file

@ -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)
}
}
}