dont fail when opening a conversation link

This commit is contained in:
Shpuld Shpuldson 2020-09-01 00:03:27 +03:00
parent f76c1518e5
commit 785d1e79a1

View file

@ -112,7 +112,7 @@ const conversation = {
return this.expanded || this.isPage
},
hiddenStyle () {
const height = this.status.virtualHeight || '120px'
const height = (this.status && this.status.virtualHeight) || '120px'
return this.virtualHidden ? { height } : {}
}
},