Skip to content

Commit

Permalink
add conditional 4th column label to DeckConfigurator per designs
Browse files Browse the repository at this point in the history
  • Loading branch information
ncdiehl11 committed Nov 13, 2023
1 parent f1b784f commit 0d99043
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion components/src/hardware-sim/DeckConfigurator/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,11 @@ export function DeckConfigurator(props: DeckConfiguratorProps): JSX.Element {
fixtureLocation={fixture.fixtureLocation}
/>
))}
<SlotLabels robotType={FLEX_ROBOT_TYPE} color={darkFill} />
<SlotLabels
robotType={FLEX_ROBOT_TYPE}
color={darkFill}
show4thColumn={stagingAreaFixtures.length > 0}
/>
{children}
</RobotCoordinateSpace>
)
Expand Down

0 comments on commit 0d99043

Please sign in to comment.