diff --git a/graph/loaders/metrics.js b/graph/loaders/metrics.js index 1b0719d0f..a22cbb58f 100644 --- a/graph/loaders/metrics.js +++ b/graph/loaders/metrics.js @@ -31,7 +31,7 @@ const getAssetMetrics = ({loaders: {Metrics, Assets}}, {from, to, sort, limit}) }, {}); // Collect just the comment id's. - let commentIDs = _.uniq(actionSummaries.map((as) => as.item_id)); + let commentIDs = Object.keys(commentMetrics); // Find those comments. return Metrics.getSpecificComments.loadMany(commentIDs);