Skip to content

Commit

Permalink
Update ProtocolRunRunTimeParameters.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
koji committed Mar 29, 2024
1 parent 04d390e commit f3433a6
Showing 1 changed file with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { formatRunTimeParameterValue } from '@opentrons/shared-data'
import {
ALIGN_CENTER,
BORDERS,
// Chip,
Chip,
COLORS,
DIRECTION_COLUMN,
DIRECTION_ROW,
Expand Down Expand Up @@ -257,10 +257,14 @@ export function ProtocolRunRuntimeParameters({
<StyledText as="p">
{formatRunTimeParameterValue(parameter, t)}
</StyledText>
{/* ToDo (kk:03/19/2024) chip will be here with conditional render */}
{/* {index % 2 === 0 ? (
<Chip text={t('updated')} type="success" />
) : null} */}
{/* ToDo (kk:03/19/2024) need to implement a logic when be is ready */}
{index % 2 === 0 ? (
<Chip
chipSize="small"
text={t('updated')}
type="success"
/>
) : null}
</Flex>
</StyledTableCell>
</StyledTableRow>
Expand Down

0 comments on commit f3433a6

Please sign in to comment.