dont fail when opening a conversation link
This commit is contained in:
parent
f76c1518e5
commit
785d1e79a1
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ const conversation = {
|
||||||
return this.expanded || this.isPage
|
return this.expanded || this.isPage
|
||||||
},
|
},
|
||||||
hiddenStyle () {
|
hiddenStyle () {
|
||||||
const height = this.status.virtualHeight || '120px'
|
const height = (this.status && this.status.virtualHeight) || '120px'
|
||||||
return this.virtualHidden ? { height } : {}
|
return this.virtualHidden ? { height } : {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Reference in a new issue