From 9fa275f7723c42259c45a497d393db0b3a3f98e5 Mon Sep 17 00:00:00 2001 From: Pete Harverson Date: Fri, 18 Oct 2019 11:28:38 +0100 Subject: [PATCH] [ML] Fixes reselection of same Anomaly Explorer swimlane cell --- x-pack/legacy/plugins/ml/public/explorer/explorer_swimlane.js | 1 + 1 file changed, 1 insertion(+) diff --git a/x-pack/legacy/plugins/ml/public/explorer/explorer_swimlane.js b/x-pack/legacy/plugins/ml/public/explorer/explorer_swimlane.js index 76fd610aa11d0e..d49a1dc0523c4c 100644 --- a/x-pack/legacy/plugins/ml/public/explorer/explorer_swimlane.js +++ b/x-pack/legacy/plugins/ml/public/explorer/explorer_swimlane.js @@ -104,6 +104,7 @@ export const ExplorerSwimlane = injectI18n(class ExplorerSwimlane extends React. } else if (action === DRAG_SELECT_ACTION.ELEMENT_SELECT) { element.classed(SCSS.mlDragselectDragging, true); } else if (action === DRAG_SELECT_ACTION.DRAG_START) { + previousSelectedData = null; this.cellMouseoverActive = false; mlChartTooltipService.hide(true); }