From 022cb5e329092d48e3fd702c77e303ea34fb70f6 Mon Sep 17 00:00:00 2001 From: vegano1 Date: Fri, 23 Jun 2023 16:41:21 -0400 Subject: [PATCH 1/2] fix(shared-data): exclude module calibration adapters from being rendered. --- shared-data/js/getLabware.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/shared-data/js/getLabware.ts b/shared-data/js/getLabware.ts index aa1a780444f..ddb8063138b 100644 --- a/shared-data/js/getLabware.ts +++ b/shared-data/js/getLabware.ts @@ -37,6 +37,10 @@ export const LABWAREV2_DO_NOT_LIST = [ 'eppendorf_96_tiprack_10ul_eptips', 'opentrons_calibrationblock_short_side_left', 'opentrons_calibrationblock_short_side_right', + 'opentrons_calibration_adapter_heatershaker_module', + 'opentrons_calibration_adapter_magnetic_module', + 'opentrons_calibration_adapter_temperature_module', + 'opentrons_calibration_adapter_thermocycler_module', // TODO(lc 8-24-2022) We are temporarily filtering // out ot-3 labware definitions right now. We should // have a way to filter these in the future to display From 0e716c3e909b8892e2d93e1bec175f4384841b6e Mon Sep 17 00:00:00 2001 From: vegano1 Date: Fri, 23 Jun 2023 16:55:16 -0400 Subject: [PATCH 2/2] move down and add comment for clarity --- shared-data/js/getLabware.ts | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/shared-data/js/getLabware.ts b/shared-data/js/getLabware.ts index ddb8063138b..12b7b8a5bdd 100644 --- a/shared-data/js/getLabware.ts +++ b/shared-data/js/getLabware.ts @@ -37,10 +37,6 @@ export const LABWAREV2_DO_NOT_LIST = [ 'eppendorf_96_tiprack_10ul_eptips', 'opentrons_calibrationblock_short_side_left', 'opentrons_calibrationblock_short_side_right', - 'opentrons_calibration_adapter_heatershaker_module', - 'opentrons_calibration_adapter_magnetic_module', - 'opentrons_calibration_adapter_temperature_module', - 'opentrons_calibration_adapter_thermocycler_module', // TODO(lc 8-24-2022) We are temporarily filtering // out ot-3 labware definitions right now. We should // have a way to filter these in the future to display @@ -49,6 +45,11 @@ export const LABWAREV2_DO_NOT_LIST = [ 'opentrons_ot3_96_tiprack_200ul', 'opentrons_ot3_96_tiprack_1000ul', 'opentrons_ot3_96_tiprack_50ul', + // TODO(ba, 2023-06-23): exclude module calibration adapters + 'opentrons_calibration_adapter_heatershaker_module', + 'opentrons_calibration_adapter_magnetic_module', + 'opentrons_calibration_adapter_temperature_module', + 'opentrons_calibration_adapter_thermocycler_module', ] // NOTE(sa, 2020-7-14): in PD we do not want to list calibration blocks // but we still might want the rest of the labware in LABWAREV2_DO_NOT_LIST