Skip to content

Commit

Permalink
fix(protocol-designer): oT-2 TC labware highlight refine logic (#17302)
Browse files Browse the repository at this point in the history
closes RQA-3849
  • Loading branch information
jerader authored Jan 18, 2025
1 parent 95089e1 commit 2e858a7
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 2e858a7

Please sign in to comment.