diff --git a/src/actions/entries.js b/src/actions/entries.js index 7b57d8a3..d18e1208 100644 --- a/src/actions/entries.js +++ b/src/actions/entries.js @@ -206,7 +206,7 @@ export function loadEntries(collection, page = 0) { const provider = integration ? getIntegrationProvider(state.integrations, backend.getToken, integration) : backend; dispatch(entriesLoading(collection)); provider.listEntries(collection, page).then( - response => dispatch(entriesLoaded(collection, response.entries, response.pagination)), + response => dispatch(entriesLoaded(collection, response.entries.reverse(), response.pagination)), error => dispatch(entriesFailed(collection, error)) ); };