Ensure we provide the cluster when toggling completed recoveries (#38543)

This commit is contained in:
Chris Roberson 2019-06-13 12:44:29 -04:00 committed by GitHub
parent 3e06e6b09a
commit b1a7bcb40a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,7 +37,7 @@ export class ElasticsearchOverviewController extends MonitoringViewBaseControlle
this.toggleShardActivityHistory = () => { this.toggleShardActivityHistory = () => {
this.showShardActivityHistory = !this.showShardActivityHistory; this.showShardActivityHistory = !this.showShardActivityHistory;
$scope.$evalAsync(() => { $scope.$evalAsync(() => {
this.renderReact(this.data); this.renderReact(this.data, $scope.cluster);
}); });
}; };