Этот коммит содержится в:
Asaad Mahmood
2015-11-19 20:18:38 +05:00
родитель 5f848b7479
Коммит 094728a809
7 изменённых файлов: 74 добавлений и 8 удалений

Просмотреть файл

@@ -74,6 +74,23 @@ export default class PostInfo extends React.Component {
);
}
if (this.props.allowReply === 'true') {
dropdownContents.push(
<li
key='replyLink'
role='presentation'
>
<a
className='reply-link visible-xs theme'
href='#'
onClick={this.props.handleCommentClick}
>
{'Reply'}
</a>
</li>
);
}
if (dropdownContents.length === 0) {
return '';
}