Label style, top level comments, no offtopic replies

This commit is contained in:
Belen Curcio
2017-06-06 08:09:34 -03:00
parent 3c96b7eb1e
commit 5faa92e8b3
7 changed files with 30 additions and 10 deletions
@@ -22,10 +22,14 @@ class OffTopicCheckbox extends React.Component {
render() {
return (
<div className={styles.offTopic}>
<label className={styles.offTopicLabel}>
<input type="checkbox" onChange={this.handleChange}/>
{t('off_topic')}
</label>
{
!this.props.isReply ? (
<label className={styles.offTopicLabel}>
<input type="checkbox" onChange={this.handleChange}/>
{t('off_topic')}
</label>
) : null
}
</div>
);
}