Skip to content

Commit 3872867

Browse files
committed
Merge remote-tracking branch 'origin/chore_release-pd-8.5.6' into HEAD
2 parents bc9d0aa + f451fe5 commit 3872867

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

protocol-designer/release-notes.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ By using Opentrons Protocol Designer, you agree to the Opentrons End-User Licens
88

99
---
1010

11+
## Opentrons Protocol Designer Changes in 8.5.6
12+
13+
**Welcome to Protocol Designer 8.5.6!**
14+
15+
This hotfix release addresses a bug when dispensing into a trash bin or waste chute.
16+
1117
## Opentrons Protocol Designer Changes in 8.5.5
1218

1319
**Welcome to Protocol Designer 8.5.5!**

protocol-designer/src/pages/Designer/ProtocolSteps/StepForm/StepTools/MoveLiquidTools/SecondStepsMoveLiquidTools.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,9 @@ export const SecondStepsMoveLiquidTools = ({
168168
]
169169
)
170170
const labwareId = formData[`${tab}_labware`]
171+
const shouldCheckLabwareDef = tab === 'aspirate' || !isDestinationTrash
171172
// The getMinXYDimension() call below is crashing quite often, but I'm not sure why
172-
if (!labwareEntities[labwareId]?.def) {
173+
if (shouldCheckLabwareDef && !labwareEntities[labwareId]?.def) {
173174
throw new Error(
174175
`missing ${tab}_labware def for ${labwareId}, ` +
175176
`in labwareEntities: ${!!labwareEntities[labwareId]}`

0 commit comments

Comments
 (0)