diff --git a/frontend/app/components/workspace/CrmWorkspaceApp.vue b/frontend/app/components/workspace/CrmWorkspaceApp.vue index deb50b6..f6f3d18 100644 --- a/frontend/app/components/workspace/CrmWorkspaceApp.vue +++ b/frontend/app/components/workspace/CrmWorkspaceApp.vue @@ -4784,10 +4784,6 @@ async function decideFeedCard(card: FeedCard, decision: "accepted" | "rejected") :contact-initials="contactInitials" :format-thread-time="formatThreadTime" :thread-channel-label="threadChannelLabel" - :thread-inboxes="threadInboxes" - :set-inbox-hidden="setInboxHidden" - :format-inbox-label="formatInboxLabel" - :is-inbox-toggle-loading="isInboxToggleLoading" :people-deal-list="peopleDealList" :selected-deal-id="selectedDealId" :is-review-highlighted-deal="isReviewHighlightedDeal" @@ -4809,6 +4805,40 @@ async function decideFeedCard(card: FeedCard, decision: "accepted" | "rejected")

{{ selectedCommThread.contact }}

+
diff --git a/frontend/app/components/workspace/communications/CrmCommunicationsListSidebar.vue b/frontend/app/components/workspace/communications/CrmCommunicationsListSidebar.vue index 16ecfa9..bf175e1 100644 --- a/frontend/app/components/workspace/communications/CrmCommunicationsListSidebar.vue +++ b/frontend/app/components/workspace/communications/CrmCommunicationsListSidebar.vue @@ -16,10 +16,7 @@ defineProps<{ markAvatarBroken: (threadId: string) => void; contactInitials: (contactName: string) => string; formatThreadTime: (iso: string) => string; - threadInboxes: (thread: any) => any[]; - setInboxHidden: (inboxId: string, hidden: boolean) => void; - formatInboxLabel: (inbox: any) => string; - isInboxToggleLoading: (inboxId: string) => boolean; + threadChannelLabel: (thread: any) => string; peopleDealList: any[]; selectedDealId: string; isReviewHighlightedDeal: (dealId: string) => boolean; @@ -69,7 +66,7 @@ function onSearchInput(event: Event) { class="input input-bordered input-sm w-full" :placeholder="peopleListMode === 'contacts' ? 'Search contacts' : 'Search deals'" @input="onSearchInput" - > + />
-
+

{{ thread.contact }}

{{ formatThreadTime(thread.lastAt) }} -
+

+ {{ threadChannelLabel(thread) }} +