From 5aef9d2dd0f8a9a4b61c2e16531aaca98ed6fc2a Mon Sep 17 00:00:00 2001 From: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Date: Wed, 25 Feb 2026 20:18:34 +0530 Subject: [PATCH] fix: Conversation list overlay issue with `Virtua` virtualizer (#13648) --- .../dashboard/components/ChatList.vue | 2 -- .../dashboard/components/ConversationItem.vue | 1 - .../dashboard/components/ui/TimeAgo.vue | 14 +++++++++++- .../widgets/conversation/ConversationCard.vue | 22 ++++++++++++++----- .../widgets/conversation/PriorityMark.vue | 1 - 5 files changed, 30 insertions(+), 10 deletions(-) diff --git a/app/javascript/dashboard/components/ChatList.vue b/app/javascript/dashboard/components/ChatList.vue index a060bcc4f..eeb2ad6e7 100644 --- a/app/javascript/dashboard/components/ChatList.vue +++ b/app/javascript/dashboard/components/ChatList.vue @@ -955,10 +955,8 @@ watch(conversationFilters, (newVal, oldVal) => { ref="virtualListRef" v-slot="{ item, index }" :data="conversationList" - :overscan="10" > diff --git a/app/javascript/dashboard/components/widgets/conversation/ConversationCard.vue b/app/javascript/dashboard/components/widgets/conversation/ConversationCard.vue index 9f7805b4e..f12b0c9c1 100644 --- a/app/javascript/dashboard/components/widgets/conversation/ConversationCard.vue +++ b/app/javascript/dashboard/components/widgets/conversation/ConversationCard.vue @@ -1,5 +1,5 @@