From e0727e6ecebb16213c996b34509f77388713db92 Mon Sep 17 00:00:00 2001 From: Ian London Date: Wed, 24 Oct 2018 10:30:39 -0400 Subject: [PATCH] fix(protocol-designer): close liquid placement form when clear wells is clicked (#2533) Related to #2528 --- protocol-designer/src/well-selection/reducers.js | 1 + 1 file changed, 1 insertion(+) diff --git a/protocol-designer/src/well-selection/reducers.js b/protocol-designer/src/well-selection/reducers.js index 9bee5ca9db4..d06e974f908 100644 --- a/protocol-designer/src/well-selection/reducers.js +++ b/protocol-designer/src/well-selection/reducers.js @@ -42,6 +42,7 @@ const selectedWells = handleActions({ CLOSE_WELL_SELECTION_MODAL: () => selectedWellsInitialState, DESELECT_ALL_WELLS: () => selectedWellsInitialState, OPEN_RENAME_LABWARE_FORM: () => selectedWellsInitialState, + REMOVE_WELLS_CONTENTS: () => selectedWellsInitialState, SET_WELL_CONTENTS: () => selectedWellsInitialState, }, selectedWellsInitialState)