[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.
This commit is contained in:
Walter Rafelsberger 2018-05-09 14:39:22 +02:00 committed by GitHub
parent 0d3df613de
commit 79c4d4ef09
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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();