From 90162ad39ba559ea01406322b777bbf721d053d2 Mon Sep 17 00:00:00 2001 From: iamsivin Date: Thu, 14 Nov 2024 18:40:47 +0530 Subject: [PATCH] feat: Conversation card click --- .../ContactsSidebar/ContactHistory.vue | 3 ++- .../ConversationCard/ConversationCard.vue | 27 ++++++++++++++++++- 2 files changed, 28 insertions(+), 2 deletions(-) diff --git a/app/javascript/dashboard/components-next/Contacts/ContactsSidebar/ContactHistory.vue b/app/javascript/dashboard/components-next/Contacts/ContactsSidebar/ContactHistory.vue index 595b2eedc..5e536fbe0 100644 --- a/app/javascript/dashboard/components-next/Contacts/ContactsSidebar/ContactHistory.vue +++ b/app/javascript/dashboard/components-next/Contacts/ContactsSidebar/ContactHistory.vue @@ -38,7 +38,7 @@ const contactConversations = computed(() =>
:contact="contactsById(conversation.meta.sender.id)" :state-inbox="stateInbox(conversation.inboxId)" :account-labels="accountLabelsValue" + class="px-6 !rounded-none dark:hover:bg-n-alpha-3 hover:bg-n-alpha-1" />
diff --git a/app/javascript/dashboard/components-next/Conversation/ConversationCard/ConversationCard.vue b/app/javascript/dashboard/components-next/Conversation/ConversationCard/ConversationCard.vue index 93a6955ed..38041fa17 100644 --- a/app/javascript/dashboard/components-next/Conversation/ConversationCard/ConversationCard.vue +++ b/app/javascript/dashboard/components-next/Conversation/ConversationCard/ConversationCard.vue @@ -1,6 +1,8 @@