[ML] Disable cell range selection. (#19795) (#19822)

This commit is contained in:
Walter Rafelsberger 2018-06-12 16:35:00 +02:00 committed by GitHub
parent 42b79a8cce
commit 5e4380e26b
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 = true;
this.allowCellRangeSelection = false;
const listenerFactory = listenerFactoryProvider();
const dragSelect = this.dragSelect = listenerFactory();