diff --git a/app/src/organisms/ProtocolSetupParameters/index.tsx b/app/src/organisms/ProtocolSetupParameters/index.tsx index 7326a506895..e2bdde62f97 100644 --- a/app/src/organisms/ProtocolSetupParameters/index.tsx +++ b/app/src/organisms/ProtocolSetupParameters/index.tsx @@ -168,7 +168,7 @@ export function ProtocolSetupParameters({ handleSetParameter(parameter)} detail={formatRunTimeParameterValue(parameter, t)} diff --git a/app/src/pages/ProtocolSetup/index.tsx b/app/src/pages/ProtocolSetup/index.tsx index 1818493e7d0..0e60ab60328 100644 --- a/app/src/pages/ProtocolSetup/index.tsx +++ b/app/src/pages/ProtocolSetup/index.tsx @@ -101,7 +101,7 @@ import type { ProtocolModuleInfo } from '../../organisms/Devices/ProtocolRun/uti const FETCH_DURATION_MS = 5000 interface ProtocolSetupStepProps { onClickSetupStep: () => void - status: 'ready' | 'not ready' | 'general' + status: 'ready' | 'not ready' | 'general' | 'inform' title: string // first line of detail text detail?: string | null @@ -135,6 +135,7 @@ export function ProtocolSetupStep({ ready: COLORS.green35, 'not ready': COLORS.yellow35, general: COLORS.grey35, + inform: COLORS.grey35, } const { makeSnackbar } = useToaster() @@ -153,6 +154,9 @@ export function ProtocolSetupStep({ case 'ready': backgroundColor = COLORS.green40 break + case 'inform': + backgroundColor = COLORS.grey50 + break default: backgroundColor = COLORS.yellow40 } @@ -183,7 +187,10 @@ export function ProtocolSetupStep({ padding={`${SPACING.spacing20} ${SPACING.spacing24}`} css={PUSHED_STATE_STYLE} > - {status !== 'general' && !disabled ? ( + {status !== 'general' && + !disabled && + status !== 'inform' && + !disabled ? ( {title} - + {description}