aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/Contacts.js
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2018-06-28 17:01:56 +0300
committerGravatar Vitaly Takmazov2023-01-13 10:37:53 +0300
commitbec5843fd6059fe25dcdc3e91352882aa1caa4d8 (patch)
treefa458e205d411593ed61059192bd9dfe3bca00a9 /vnext/src/components/Contacts.js
parent96a7f550b4d27dbf8a50f6b692b4be9d734423e5 (diff)
cleanup class names
Diffstat (limited to 'vnext/src/components/Contacts.js')
-rw-r--r--vnext/src/components/Contacts.js22
1 files changed, 12 insertions, 10 deletions
diff --git a/vnext/src/components/Contacts.js b/vnext/src/components/Contacts.js
index aea537d4..509db3b3 100644
--- a/vnext/src/components/Contacts.js
+++ b/vnext/src/components/Contacts.js
@@ -28,16 +28,18 @@ export default class Contacts extends React.Component {
const { pms } = this.state;
const user = this.props.visitor;
return (
- <div style={wrapperStyle} className="msg-cont">
- <ul style={chatListStyle} ref="chats">
- {
- pms && pms.map((chat) =>
- <li key={chat.uname} style={chatTitleStyle}>
- <Contact key={chat.uname} user={chat} />
- </li>
- )
- }
- </ul>
+ <div className="msgs">
+ <div style={wrapperStyle} className="msg-cont">
+ <ul style={chatListStyle} ref="chats">
+ {
+ pms && pms.map((chat) =>
+ <li key={chat.uname} style={chatTitleStyle}>
+ <Contact key={chat.uname} user={chat} />
+ </li>
+ )
+ }
+ </ul>
+ </div>
</div>
);
}