From 79c4d4ef0974a56df80e1ba976d778c78da0ebb7 Mon Sep 17 00:00:00 2001 From: Walter Rafelsberger Date: Wed, 9 May 2018 14:39:22 +0200 Subject: [PATCH] [ML] Enable cell range selection. (#18920) This re-enables the feature flag to support selecting a range of cells in the anomaly explorer. Follow-ups to this PR will tackle limiting the allowed cells to select to avoid problems with too wide selections. --- x-pack/plugins/ml/public/explorer/explorer_dashboard_service.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/ml/public/explorer/explorer_dashboard_service.js b/x-pack/plugins/ml/public/explorer/explorer_dashboard_service.js index d18fb706f0d3..f2efd703a65c 100644 --- a/x-pack/plugins/ml/public/explorer/explorer_dashboard_service.js +++ b/x-pack/plugins/ml/public/explorer/explorer_dashboard_service.js @@ -17,7 +17,7 @@ const module = uiModules.get('apps/ml'); import { listenerFactoryProvider } from 'plugins/ml/factories/listener_factory'; module.service('mlExplorerDashboardService', function () { - this.allowCellRangeSelection = false; + this.allowCellRangeSelection = true; const listenerFactory = listenerFactoryProvider(); const dragSelect = this.dragSelect = listenerFactory();