remove comment count from results

This commit is contained in:
Riley Davis
2017-02-24 12:58:06 -07:00
parent 1058bff8ad
commit aefcb29877
3 changed files with 0 additions and 5 deletions
@@ -18,7 +18,6 @@ const FlagWidget = (props) => {
<th></th>{/* empty on purpose */}
<th>{lang.t('streams.article')}</th>
<th>{lang.t('modqueue.flagged')}</th>
<th>{lang.t('dashboard.comment_count')}</th>
</tr>
</thead>
<tbody>
@@ -34,7 +33,6 @@ const FlagWidget = (props) => {
<p className={styles.lede}>{asset.author} - Published: {new Date(asset.created_at).toLocaleDateString()}</p>
</td>
<td>{flagSummary ? flagSummary.actionCount : 0}</td>
<td>{asset.commentCount}</td>
</tr>
);
})
@@ -19,7 +19,6 @@ const LikeWidget = (props) => {
<th></th>{/* empty on purpose */}
<th>{lang.t('streams.article')}</th>
<th>{lang.t('modqueue.likes')}</th>
<th>{lang.t('dashboard.comment_count')}</th>
</tr>
</thead>
<tbody>
@@ -35,7 +34,6 @@ const LikeWidget = (props) => {
<p className={styles.lede}>{asset.author} - Published: {new Date(asset.created_at).toLocaleDateString()}</p>
</td>
<td>{likeSummary ? likeSummary.actionCount : 0}</td>
<td>{asset.commentCount}</td>
</tr>
);
})
@@ -2,7 +2,6 @@ fragment metrics on Asset {
id
title
url
commentCount
author
created_at
action_summaries {