ConversationHeader: centered title, ConvoListItem: unbold name
This commit is contained in:
parent
b7d5013558
commit
7dd931fb7e
3 changed files with 43 additions and 8 deletions
|
@ -82,7 +82,14 @@ export class ConversationListItem extends React.Component<Props> {
|
|||
|
||||
return (
|
||||
<div className="module-conversation-list-item__header">
|
||||
<div className="module-conversation-list-item__header__name">
|
||||
<div
|
||||
className={classNames(
|
||||
'module-conversation-list-item__header__name',
|
||||
unreadCount > 0
|
||||
? 'module-conversation-list-item__header__name--with-unread'
|
||||
: null
|
||||
)}
|
||||
>
|
||||
<ContactName
|
||||
phoneNumber={phoneNumber}
|
||||
name={name}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue