Added scoreboard initial design BOD-91
This commit is contained in:
@@ -5,11 +5,13 @@ import ChatConversationTitleTags from "../chat-conversation-title-tags/chat-conv
|
||||
export default function ChatConversationTitle({ conversation }) {
|
||||
return (
|
||||
<div style={{ display: "flex" }}>
|
||||
{conversation.phone_num}
|
||||
{conversation && conversation.phone_num}
|
||||
<ChatConversationTitleTags
|
||||
jobConversations={conversation.job_conversations || []}
|
||||
jobConversations={
|
||||
(conversation && conversation.job_conversations) || []
|
||||
}
|
||||
/>
|
||||
<ChatTagRoContainer conversation={conversation} />
|
||||
<ChatTagRoContainer conversation={conversation || []} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user