From fdea276b80059e8520a9e9d856308f66018d9596 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Mon, 24 Aug 2026 17:35:13 +0300 Subject: [PATCH] more precise height detection --- 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 9827fd321..8c7a02de9 100644 --- a/src/components/conversation/conversation.js +++ b/src/components/conversation/conversation.js @@ -622,7 +622,7 @@ const conversation = { }, updateVirtualHeight() { this.$nextTick(() => { - this.virtualHeight = this.$refs.body.clientHeight + this.virtualHeight = this.$refs.body.getBoundingClientRect().height this.$emit('update:virtualHeight', { id: this.status.id, height: this.virtualHeight,