basic source schema reading data in

This commit is contained in:
Lachlan Kermode
2018-12-12 17:00:22 +00:00
parent 0c54e07f8f
commit fb84d6883b
5 changed files with 47 additions and 16 deletions

View File

@@ -32,7 +32,7 @@ class Dashboard extends React.Component {
componentDidMount() {
if (!this.props.app.isMobile) {
this.props.actions.fetchDomain()
.then((domain) => this.props.actions.updateDomain(domain));
.then(domain => this.props.actions.updateDomain(domain));
}
}