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

This commit is contained in:
Chris Roberson 2019-06-13 14:28:08 -04:00 committed by GitHub
parent 4a9460dd8f
commit 45ddd0a7a9
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);
});
};