feature/IO-3000-messaging-sockets-migrations2 -
- Conversation Labels Synced - Job Tagging Synced Signed-off-by: Dave Richer <dave@imexsystems.ca>
This commit is contained in:
@@ -7,14 +7,17 @@ import ChatLabelComponent from "../chat-label/chat-label.component";
|
||||
import ChatPrintButton from "../chat-print-button/chat-print-button.component";
|
||||
import ChatTagRoContainer from "../chat-tag-ro/chat-tag-ro.container";
|
||||
|
||||
export default function ChatConversationTitle({ conversation }) {
|
||||
export default function ChatConversationTitle({ conversation, bodyshop }) {
|
||||
return (
|
||||
<Space wrap>
|
||||
<PhoneNumberFormatter>{conversation && conversation.phone_num}</PhoneNumberFormatter>
|
||||
<ChatLabelComponent conversation={conversation} />
|
||||
<ChatLabelComponent conversation={conversation} bodyshop={bodyshop} />
|
||||
<ChatPrintButton conversation={conversation} />
|
||||
<ChatConversationTitleTags jobConversations={(conversation && conversation.job_conversations) || []} />
|
||||
<ChatTagRoContainer conversation={conversation || []} />
|
||||
<ChatConversationTitleTags
|
||||
jobConversations={(conversation && conversation.job_conversations) || []}
|
||||
bodyshop={bodyshop}
|
||||
/>
|
||||
<ChatTagRoContainer conversation={conversation || []} bodyshop={bodyshop} />
|
||||
<ChatArchiveButton conversation={conversation} />
|
||||
</Space>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user