diff --git a/ui/src/dashboards/containers/DashboardsPage.js b/ui/src/dashboards/containers/DashboardsPage.js index b3f0a42854..9828639eb2 100644 --- a/ui/src/dashboards/containers/DashboardsPage.js +++ b/ui/src/dashboards/containers/DashboardsPage.js @@ -10,9 +10,9 @@ const DashboardsPage = React.createClass({ }, componentDidMount() { - getDashboards().then((dashboards) => { + getDashboards().then((resp) => { this.setState({ - dashboards, + dashboards: resp.data.dashboards, }); }); },