summaryrefslogtreecommitdiffstats
path: root/web/react/components/post_header.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-11-19 07:55:13 -0500
committerChristopher Speller <crspeller@gmail.com>2015-11-19 07:55:13 -0500
commit7b442ea6af6b5da22faf6f652ad7f01803836f17 (patch)
treef1baec4a433821e5025926e45c3b789ae1b6b197 /web/react/components/post_header.jsx
parente408d615c02ae3c863df3c7dc13d1b813c22fd28 (diff)
parent3e2aba873db6cee3838930321416275b2bbce2be (diff)
downloadchat-7b442ea6af6b5da22faf6f652ad7f01803836f17.tar.gz
chat-7b442ea6af6b5da22faf6f652ad7f01803836f17.tar.bz2
chat-7b442ea6af6b5da22faf6f652ad7f01803836f17.zip
Merge pull request #1462 from asaadmahmoodspin/postsImprovement
Posts structure improvement
Diffstat (limited to 'web/react/components/post_header.jsx')
-rw-r--r--web/react/components/post_header.jsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/web/react/components/post_header.jsx b/web/react/components/post_header.jsx
index 45e60c767..e8b162fc2 100644
--- a/web/react/components/post_header.jsx
+++ b/web/react/components/post_header.jsx
@@ -26,14 +26,14 @@ export default class PostHeader extends React.Component {
);
}
- botIndicator = <li className='post-header-col post-header__name bot-indicator'>{'BOT'}</li>;
+ botIndicator = <li className='col col__name bot-indicator'>{'BOT'}</li>;
}
return (
- <ul className='post-header post-header-post'>
- <li className='post-header-col post-header__name'><strong>{userProfile}</strong></li>
+ <ul className='post__header'>
+ <li className='col col__name'>{userProfile}</li>
{botIndicator}
- <li className='post-info--hidden'>
+ <li className='col'>
<PostInfo
post={post}
commentCount={this.props.commentCount}