mirror of
				https://github.com/aclindsa/moneygo.git
				synced 2025-11-03 18:13:27 -05:00 
			
		
		
		
	ReportReducer: Fix bug creating list
This commit is contained in:
		@@ -85,7 +85,7 @@ module.exports = function(state = initialState, action) {
 | 
				
			|||||||
			var list = [];
 | 
								var list = [];
 | 
				
			||||||
			for (var reportId in reports) {
 | 
								for (var reportId in reports) {
 | 
				
			||||||
				if (reports.hasOwnProperty(reportId))
 | 
									if (reports.hasOwnProperty(reportId))
 | 
				
			||||||
					list.push(report);
 | 
										list.push(reports[reportId]);
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
			return assign({}, state, {
 | 
								return assign({}, state, {
 | 
				
			||||||
				map: reports,
 | 
									map: reports,
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user