From ace3e2398b5e02d1e2226b848c28973c8c2d74bb Mon Sep 17 00:00:00 2001 From: riley Date: Fri, 28 Apr 2017 11:41:03 -0600 Subject: [PATCH] enable load more on accepted queue --- client/coral-admin/src/graphql/queries/index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/coral-admin/src/graphql/queries/index.js b/client/coral-admin/src/graphql/queries/index.js index 53113558b..9d2357ce7 100644 --- a/client/coral-admin/src/graphql/queries/index.js +++ b/client/coral-admin/src/graphql/queries/index.js @@ -39,6 +39,9 @@ export const loadMore = (fetchMore) => ({limit, cursor, sort, tab, asset_id}) => case 'all': statuses = null; break; + case 'accepted': + statuses = ['ACCEPTED']; + break; case 'premod': statuses = ['PREMOD']; break;