This commit is contained in:
Wyatt Johnson
2018-02-13 18:29:07 -07:00
parent 1e329c8967
commit 9820e575b2
+1 -1
View File
@@ -157,7 +157,7 @@ const genActionSummariesByItem = async (ctx, items) => {
// don't need to hit the actions collection at all!
// We will literate over all the items that we're comparing.
return items.map(resolveActionSummariesForItem);
return items.map(item => resolveActionSummariesForItem(ctx, item));
};
/**