diff --git a/x-pack/plugins/ml/public/application/explorer/explorer_dashboard_service.ts b/x-pack/plugins/ml/public/application/explorer/explorer_dashboard_service.ts index f6b454c99248c..fabe32c5cb33c 100644 --- a/x-pack/plugins/ml/public/application/explorer/explorer_dashboard_service.ts +++ b/x-pack/plugins/ml/public/application/explorer/explorer_dashboard_service.ts @@ -52,7 +52,7 @@ export const explorerAction$ = new Subject(); const explorerFilteredAction$ = explorerAction$.pipe( // consider observables as side-effects flatMap((action: ExplorerAction) => - isObservable(action) ? action : (from([action]) as Observable) + isObservable(action) ? action : (from([action]) as Observable) ), distinctUntilChanged(isEqual) );