diff --git a/x-pack/plugins/monitoring/public/views/elasticsearch/overview/controller.js b/x-pack/plugins/monitoring/public/views/elasticsearch/overview/controller.js index 802ecb841280..5bb550b9ac5c 100644 --- a/x-pack/plugins/monitoring/public/views/elasticsearch/overview/controller.js +++ b/x-pack/plugins/monitoring/public/views/elasticsearch/overview/controller.js @@ -37,7 +37,7 @@ export class ElasticsearchOverviewController extends MonitoringViewBaseControlle this.toggleShardActivityHistory = () => { this.showShardActivityHistory = !this.showShardActivityHistory; $scope.$evalAsync(() => { - this.renderReact(this.data); + this.renderReact(this.data, $scope.cluster); }); };