EditDashboardCell now requires dashboard be provided (#1225)

pull/1207/head^2
lukevmorris 2017-04-07 10:14:45 -07:00 committed by GitHub
parent 0a75bc1bdc
commit 482b5cce39
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())
}
},