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

This commit is contained in:
Chris Roberson 2019-06-13 13:48:03 -04:00 committed by GitHub
parent 8eb532ac3f
commit 5caf5da7a4
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);
});
};