From 9820e575b271299da4a918b253baebdcc6959d9b Mon Sep 17 00:00:00 2001 From: Wyatt Johnson Date: Tue, 13 Feb 2018 18:29:07 -0700 Subject: [PATCH] patch --- graph/loaders/actions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graph/loaders/actions.js b/graph/loaders/actions.js index 6e8c42355..99aaa6015 100644 --- a/graph/loaders/actions.js +++ b/graph/loaders/actions.js @@ -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)); }; /**