Skip to content

Commit

Permalink
fix(app): ensure liquids nested in labware on adapter in module show …
Browse files Browse the repository at this point in the history
…on liquid map (#15132)

Closes RQA-2699

At protocol setup on desktop, when viewing liquid setup > map view, liquids are incorrectly set to null for labware nested on an adapter, which is in turn nested on a module. We need to pass the topmost nested labware to getWellFillFromLabwareId to correctly return populated well fill.
  • Loading branch information
ncdiehl11 authored May 9, 2024
1 parent db21c14 commit a78ea71
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export function SetupLiquidsMap(
labwareInAdapterInMod?.params.displayName ??
module.nestedLabwareDisplayName
const nestedLabwareWellFill = getWellFillFromLabwareId(
module.nestedLabwareId ?? '',
topLabwareId ?? '',
liquids,
labwareByLiquidId
)
Expand Down

0 comments on commit a78ea71

Please sign in to comment.