#433 - fix broken conversation page
This commit is contained in:
parent
4cec0d589d
commit
6a9159b255
3 changed files with 13 additions and 5 deletions
|
@ -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: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue