From b1a7bcb40a9ee1ee88f9c34a00108b6e52f9b879 Mon Sep 17 00:00:00 2001 From: Chris Roberson Date: Thu, 13 Jun 2019 12:44:29 -0400 Subject: [PATCH] Ensure we provide the cluster when toggling completed recoveries (#38543) --- .../public/views/elasticsearch/overview/controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }); };