Skip to content

Commit

Permalink
fix(protocol-designer): oT-2 TC labware highlight refine logic
Browse files Browse the repository at this point in the history
closes RQA-3849
  • Loading branch information
jerader committed Jan 17, 2025
1 parent 95089e1 commit d50d8ea
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,11 @@ export function HighlightItems(props: HighlightItemsProps): JSX.Element | null {
selected => selected.id === labwareOnDeck.id
)}
isLast={true}
position={tcModel != null ? tcPosition : position}
position={
tcModel != null && (labwareSlot === '7' || labwareSlot === 'B1')
? tcPosition
: position
}
labwareDef={labwareOnDeck.def}
labelText={
hoveredItemLabware == null
Expand Down

0 comments on commit d50d8ea

Please sign in to comment.