Skip to content

Commit a78ea71

Browse files
authored
fix(app): ensure liquids nested in labware on adapter in module show 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.
1 parent db21c14 commit a78ea71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/organisms/Devices/ProtocolRun/SetupLiquids/SetupLiquidsMap.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export function SetupLiquidsMap(
8282
labwareInAdapterInMod?.params.displayName ??
8383
module.nestedLabwareDisplayName
8484
const nestedLabwareWellFill = getWellFillFromLabwareId(
85-
module.nestedLabwareId ?? '',
85+
topLabwareId ?? '',
8686
liquids,
8787
labwareByLiquidId
8888
)

0 commit comments

Comments
 (0)