Merge pull request #1198 from influxdata/1196-repair-dashboard-layout-changes
Repair Dashboard Layout Changespull/10616/head
commit
b2fb40daaa
|
@ -103,9 +103,9 @@ const DashboardPage = React.createClass({
|
|||
},
|
||||
|
||||
handleUpdatePosition(cells) {
|
||||
const dashboard = this.getActiveDashboard()
|
||||
this.props.dashboardActions.updateDashboardCells(dashboard, cells)
|
||||
this.props.dashboardActions.putDashboard(dashboard)
|
||||
const newDashboard = {...this.getActiveDashboard(), cells}
|
||||
this.props.dashboardActions.updateDashboard(newDashboard)
|
||||
this.props.dashboardActions.putDashboard(newDashboard)
|
||||
},
|
||||
|
||||
handleAddCell() {
|
||||
|
|
Loading…
Reference in New Issue