Skip to content

Commit

Permalink
fix(protocol-designer): pipette channel change patch does not rely on… (
Browse files Browse the repository at this point in the history
#15676)

… labware

closes RQA-2861

This is a bug in production currently and has been in production since
8.1.0. We decided that its big enough to warrant a fix in the hot fix.
Basically, you can't switch pipettes in a mix step if its between a
single vs 8 channel.
  • Loading branch information
jerader authored Jul 16, 2024
1 parent 771d4f6 commit c9a3f73
Showing 1 changed file with 10 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,13 +113,16 @@ const updatePatchOnPipetteChannelChange = (
}
// multi-channel to single-channel: convert primary wells to all wells
const labwareId = appliedPatch.labware
const labwareDef = labwareEntities[labwareId].def
update = {
wells: getAllWellsFromPrimaryWells(
appliedPatch.wells,
labwareDef,
channels
),

if (labwareId != null) {
const labwareDef = labwareEntities[labwareId].def
update = {
wells: getAllWellsFromPrimaryWells(
appliedPatch.wells,
labwareDef,
channels
),
}
}
}

Expand Down

0 comments on commit c9a3f73

Please sign in to comment.