#433 - fix broken conversation page

This commit is contained in:
dave 2019-03-25 10:50:09 -04:00
parent 4cec0d589d
commit 6a9159b255
3 changed files with 13 additions and 5 deletions

View file

@ -31,7 +31,8 @@ const conversation = {
},
props: [
'statusoid',
'collapsable'
'collapsable',
'isPage'
],
computed: {
status () {
@ -49,7 +50,7 @@ const conversation = {
return []
}
if (!this.expanded) {
if (!this.expanded && !this.isPage) {
return [this.status]
}
@ -79,6 +80,9 @@ const conversation = {
i++
return result
}, {})
},
isExpanded () {
return this.expanded || this.isPage
}
},
components: {