Skip to content

Commit

Permalink
fix(labware-library): remove negative margin and adjust flat bottom a… (
Browse files Browse the repository at this point in the history
#16395)

…dapter criteria

closes RQA-3173
  • Loading branch information
jerader authored Oct 1, 2024
1 parent 2cdcc96 commit d725bd5
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,15 @@ export function StackingOffsets(): JSX.Element | null {
if (
isFlatBottom &&
isCircular &&
values.labwareType !== 'reservoir' &&
values.labwareType === 'wellPlate' &&
has96Wells
) {
modifiedAdapterDefinitions = adapterDefinitions.filter(
definition =>
definition.parameters.loadName === 'opentrons_96_flat_bottom_adapter'
definition.parameters.loadName === 'opentrons_96_flat_bottom_adapter' ||
definition.parameters.loadName ===
'opentrons_aluminum_flat_bottom_plate' ||
definition.parameters.loadName === 'opentrons_universal_flat_adapter'
)
}
if (!isCircular && isVBottom && has96Wells) {
Expand Down Expand Up @@ -332,7 +335,6 @@ export function StackingOffsets(): JSX.Element | null {
{isChecked ? (
<div
style={{
marginTop: '-1.2rem',
height: '2.0rem',
fontSize: '0.75rem',
}}
Expand Down

0 comments on commit d725bd5

Please sign in to comment.