EditDashboardCell now requires dashboard be provided (#1225)

pull/10616/head
lukevmorris 2017-04-07 10:14:45 -07:00 committed by GitHub
parent 96de21ed66
commit 687d5b1574
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ const DashboardPage = React.createClass({
handleUpdateDashboardCell(newCell) {
return () => {
this.props.dashboardActions.editDashboardCell(newCell.x, newCell.y, false)
this.props.dashboardActions.editDashboardCell(this.getActiveDashboard(), newCell.x, newCell.y, false)
this.props.dashboardActions.putDashboard(this.getActiveDashboard())
}
},