-
Notifications
You must be signed in to change notification settings - Fork 183
fix(step-generation): extend unreachable temp timeline error to heate… #18674
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## chore_release-pd-8.5.0 #18674 +/- ##
==========================================================
+ Coverage 23.83% 24.08% +0.24%
==========================================================
Files 3282 3256 -26
Lines 285228 281606 -3622
Branches 28688 28639 -49
==========================================================
- Hits 67992 67822 -170
+ Misses 217211 213759 -3452
Partials 25 25
Flags with carried forward coverage won't be shown. Click here to find out more.
🚀 New features to boost your workflow:
|
@@ -168,6 +168,7 @@ export function PauseTools(props: StepFormProps): JSX.Element { | |||
<DropdownStepFormField | |||
{...propsForFields.moduleId} | |||
tooltipContent={null} | |||
padding="0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this padding allowed for the dropdown menu to span the whole width
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good catch. this looks good to me
@@ -41,7 +41,7 @@ interface StepSummaryProps { | |||
export function StepSummary(props: StepSummaryProps): JSX.Element | null { | |||
const { currentStep, stepDetails } = props | |||
const { t } = useTranslation(['protocol_steps', 'application']) | |||
const unknownModule = t('unkonwn_module') | |||
const unknownModule = t('unknown_module') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice lol
@@ -58,7 +58,9 @@ export const waitForTemperature: CommandCreator<TemperatureParams> = ( | |||
|
|||
if ( | |||
unreachableTemp || | |||
('status' in moduleState && moduleState.status === TEMPERATURE_DEACTIVATED) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice!
…r-shaker
closes RQA-4297
Overview
Fix a bug where there was no timeline error showing up for the attached protocol which caused an analysis failure since the error was not caught.
Test Plan and Hands on Testing
upload the protocol to PD and see that there is now a timeline error
doItAllV7.json
Changelog
Risk assessment
low