From 8c568d3653b5f5036b8dfc225ea8dcdcef470305 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Mon, 24 Aug 2026 19:51:57 +0300 Subject: [PATCH] fix --- 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 69fca2f2c..3202a79c9 100644 --- a/src/components/conversation/conversation.js +++ b/src/components/conversation/conversation.js @@ -365,7 +365,7 @@ const conversation = { return !!(this.expanded || this.isPage) }, hiddenStyle() { - if (this.isExpanded) return {} + if (this.isExpanded || !this.virtualHidden) return {} return { height: this.virtualHeight + 'px' } }, threadDisplayStatus() {