1
0
mirror of https://github.com/aclindsa/moneygo.git synced 2025-06-13 21:48:39 -04:00

UI: Make reports.list contain actual reports

This commit is contained in:
2017-06-23 06:00:10 -04:00
parent 0cd27fea87
commit e49b11f349
2 changed files with 4 additions and 4 deletions

View File

@ -152,8 +152,8 @@ class ReportsTab extends React.Component {
if (!this.state.initialized) {
if (selected == -1 &&
nextProps.reports.list.length > 0) {
nextProps.onSelectReport(nextProps.reports.map[nextProps.reports.list[0]]);
nextProps.onTabulateReport(nextProps.reports.map[nextProps.reports.list[0]]);
nextProps.onSelectReport(nextProps.reports.list[0]);
nextProps.onTabulateReport(nextProps.reports.list[0]);
this.setState({initialized: true});
}
}