aboutsummaryrefslogtreecommitdiff
path: root/vnext
diff options
context:
space:
mode:
Diffstat (limited to 'vnext')
-rw-r--r--vnext/src/components/Contact.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/vnext/src/components/Contact.js b/vnext/src/components/Contact.js
index 820b3e05..300b650b 100644
--- a/vnext/src/components/Contact.js
+++ b/vnext/src/components/Contact.js
@@ -10,7 +10,8 @@ export default class Contact extends React.Component {
return (
<>
<Avatar user={user} link={`/pm/${user.uname}`}>
- { user.unreadCount && <span className="badge">{user.unreadCount}</span>}
+ {user.unreadCount && <span className="badge">{user.unreadCount}</span>}
+ <div className="msg-ts">{user.lastMessageText}</div>
</Avatar>
</>
);