grid: minor progress on panel repeats

This commit is contained in:
Torkel Ödegaard
2017-10-12 21:37:27 +02:00
parent 215d59865e
commit 8bb9d92a73
12 changed files with 431 additions and 551 deletions

View File

@@ -69,6 +69,7 @@ export class DashboardGrid extends React.Component<DashboardGridProps, any> {
this.dashboard = this.panelContainer.getDashboard();
this.dashboard.on('panel-added', this.triggerForceUpdate.bind(this));
this.dashboard.on('panel-removed', this.triggerForceUpdate.bind(this));
this.dashboard.on('repeats-processed', this.triggerForceUpdate.bind(this));
this.dashboard.on('view-mode-changed', this.triggerForceUpdate.bind(this));
}