diff --git a/js/reducers/ReportReducer.js b/js/reducers/ReportReducer.js index 4886ce0..2a104ef 100644 --- a/js/reducers/ReportReducer.js +++ b/js/reducers/ReportReducer.js @@ -85,7 +85,7 @@ module.exports = function(state = initialState, action) { var list = []; for (var reportId in reports) { if (reports.hasOwnProperty(reportId)) - list.push(report); + list.push(reports[reportId]); } return assign({}, state, { map: reports,