Skip to content

Commit

Permalink
[ML] Enable cell range selection. (#18920)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
walterra authored May 9, 2018
1 parent 0d3df61 commit 79c4d4e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 79c4d4e

Please sign in to comment.