From 785d1e79a1933e300d6d7a84985768c89e78016c Mon Sep 17 00:00:00 2001 From: Shpuld Shpuldson Date: Tue, 1 Sep 2020 00:03:27 +0300 Subject: [PATCH] dont fail when opening a conversation link --- src/components/conversation/conversation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/conversation/conversation.js b/src/components/conversation/conversation.js index dff32f358..069c0b407 100644 --- a/src/components/conversation/conversation.js +++ b/src/components/conversation/conversation.js @@ -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 } : {} } },