1
0
mirror of https://github.com/aclindsa/moneygo.git synced 2025-06-19 23:48:38 -04:00

Stop creating lists in containers

Create them only when needed in reducers instead
This commit is contained in:
2017-06-21 21:27:05 -04:00
parent cd9ad1d4d7
commit 25b04a4f0f
5 changed files with 57 additions and 29 deletions

@ -288,7 +288,7 @@ class ReportsTab extends React.Component {
</ButtonGroup>
<ButtonGroup>
<Combobox
data={this.props.report_list}
data={this.props.reports.list}
valueField='ReportId'
textField={item => typeof item === 'string' ? item : item.Name}
value={selectedReport}