From cfed42be2c09936f51292eb4749fd8c2e37c7a02 Mon Sep 17 00:00:00 2001 From: David Jay Date: Wed, 21 Dec 2016 12:05:25 -0800 Subject: [PATCH] Correcting bug in fetchAssets. --- client/coral-admin/src/actions/assets.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/coral-admin/src/actions/assets.js b/client/coral-admin/src/actions/assets.js index 30bd7909b..92f511d5f 100644 --- a/client/coral-admin/src/actions/assets.js +++ b/client/coral-admin/src/actions/assets.js @@ -14,7 +14,7 @@ import coralApi from '../../../coral-framework/helpers/response'; // Fetch a page of assets // Get comments to fill each of the three lists on the mod queue -export const fetchAssets = (skip, limit, sort, search, filter) => (dispatch) => { +export const fetchAssets = (skip, limit, search, sort, filter) => (dispatch) => { dispatch({type: FETCH_ASSETS}); return coralApi(`/assets?skip=${skip || ''}&limit=${limit || ''}&sort=${sort || ''}&search=${search || ''}&filter=${filter || ''}`) .then(({result, count}) =>