summaryrefslogtreecommitdiffstats
path: root/web/react/components/post_info.jsx
diff options
context:
space:
mode:
authorAsaad Mahmood <asaad@spinpunch.com>2016-01-29 00:04:42 +0500
committerAsaad Mahmood <asaad@spinpunch.com>2016-01-29 00:04:42 +0500
commitce2ec34e585bd5f9c319936ae66fe764dabac0e3 (patch)
tree9b5bf4bbe5ca903bd39a951ccf70f7323275ff66 /web/react/components/post_info.jsx
parent0e69a871bb44705a23b82ad46fac41e1cad5fb3d (diff)
downloadchat-ce2ec34e585bd5f9c319936ae66fe764dabac0e3.tar.gz
chat-ce2ec34e585bd5f9c319936ae66fe764dabac0e3.tar.bz2
chat-ce2ec34e585bd5f9c319936ae66fe764dabac0e3.zip
Adding reply icon
Diffstat (limited to 'web/react/components/post_info.jsx')
-rw-r--r--web/react/components/post_info.jsx8
1 files changed, 7 insertions, 1 deletions
diff --git a/web/react/components/post_info.jsx b/web/react/components/post_info.jsx
index 2bd1a57f7..73b47024c 100644
--- a/web/react/components/post_info.jsx
+++ b/web/react/components/post_info.jsx
@@ -24,8 +24,14 @@ export default class PostInfo extends React.Component {
}
createReplyLink() {
if (this.props.allowReply === 'true') {
+ var hideReply = '';
+
+ if (this.props.commentCount >= 1) {
+ hideReply = ' post__reply--hide';
+ }
+
return (
- <div className='post__reply'>
+ <div className={'post__reply' + hideReply}>
<a
onClick={this.props.handleCommentClick}
href='#'