Skip to content

Commit

Permalink
feat(app): create well selection component
Browse files Browse the repository at this point in the history
creates ODD well selection component for use in quick transfer. implements basic source and
destination quick transfer well selection.

closes PLAT-172, PLAT-175
  • Loading branch information
brenthagen committed May 16, 2024
1 parent bcc1186 commit dcf40af
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/src/organisms/WellSelection/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,11 @@ export function WellSelection(props: WellSelectionProps): JSX.Element {
})
Object.keys(allSelectedWells).forEach(wellName => {
wellFill[wellName] = COLORS.blue50
wellStroke[wellName] = COLORS.transparent
})
Object.keys(highlightedWells).forEach(wellName => {
wellFill[wellName] = COLORS.blue50
wellStroke[wellName] = COLORS.transparent
})

return (
Expand All @@ -145,7 +147,6 @@ export function WellSelection(props: WellSelectionProps): JSX.Element {
<RobotCoordinateSpace viewBox="0 0 128 86">
<LabwareRender
definition={definition}
selectedWells={allSelectedWells}
hideOutline
isInteractive
wellLabelOption={WELL_LABEL_OPTIONS.SHOW_LABEL_INSIDE}
Expand Down

0 comments on commit dcf40af

Please sign in to comment.