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

This commit is contained in:
Chris Roberson 2019-06-13 13:47:42 -04:00 committed by GitHub
parent 3362066469
commit 28928e4093
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.showShardActivityHistory = !this.showShardActivityHistory;
$scope.$evalAsync(() => {
this.renderReact(this.data);
this.renderReact(this.data, $scope.cluster);
});
};