-
+ {
+ this.props.viewAllComments();
+ this.props.data.refetch();
+ }}/>
+
{lang.t('MY_COMMENTS')}
Configure Stream
diff --git a/client/coral-plugin-comment-count/CommentCount.js b/client/coral-plugin-comment-count/CommentCount.js
index 764984634..e53944025 100644
--- a/client/coral-plugin-comment-count/CommentCount.js
+++ b/client/coral-plugin-comment-count/CommentCount.js
@@ -3,8 +3,8 @@ import {I18n} from '../coral-framework';
import translations from './translations.json';
const name = 'coral-plugin-comment-count';
-const CommentCount = ({count}) => {
- return
+const CommentCount = ({count, onClick}) => {
+ return
onClick()}>
{`${count} ${count === 1 ? lang.t('comment') : lang.t('comment-plural')}`}
;
};