Skip to content

Commit

Permalink
fix(app): modify display for disabled protocol setup steps in ODD (#1…
Browse files Browse the repository at this point in the history
…3502)

* fix(app): remove arrow from disabled protocol setup steps
  • Loading branch information
ncdiehl11 authored Sep 11, 2023
1 parent b247639 commit 124f184
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions app/src/pages/OnDeviceDisplay/ProtocolSetup/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -174,13 +174,15 @@ export function ProtocolSetupStep({
{subDetail}
</StyledText>
</Flex>
<Icon
marginLeft={SPACING.spacing8}
name="more"
size="3rem"
// Required to prevent inconsistent component height.
style={{ backgroundColor: disabled ? 'transparent' : 'initial' }}
/>
{disabled ? null : (
<Icon
marginLeft={SPACING.spacing8}
name="more"
size="3rem"
// Required to prevent inconsistent component height.
style={{ backgroundColor: disabled ? 'transparent' : 'initial' }}
/>
)}
</Flex>
</Btn>
)
Expand Down

0 comments on commit 124f184

Please sign in to comment.