-
Notifications
You must be signed in to change notification settings - Fork 180
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
feat(protocol-designer): move labware tools wire up #16314
Conversation
protocol-designer/src/molecules/CheckboxStepFormField/index.tsx
Outdated
Show resolved
Hide resolved
protocol-designer/src/molecules/CheckboxStepFormField/index.tsx
Outdated
Show resolved
Hide resolved
...rc/pages/Designer/ProtocolSteps/StepForm/StepTools/MoveLabwareTools/LabwareLocationField.tsx
Show resolved
Hide resolved
labwareName: labwareDisplayName, | ||
slot: locationString, | ||
}) | ||
: undefined |
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.
technically we can set undefined
but errorToShow can be null
so I think set null
would be better since sometimes undefined
causes an unexpected bug.
: undefined | |
: null |
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.
i'll fix this in my pr that i have been working on top of this pr!
closes AUTH-808
Overview
Wires up the move labware tools. It doesn't display any errors yet and doesn't hover over anything on the deck map yet.
Test Plan and Hands on Testing
Create a move labware step. for the flex, the gripper checkbox should appear. for an ot-2 the gripper checkbox should not appear. if you have a gripper attached, the checkbox is clickable. otherwise, the checkbox is disabled. This should mirror old PD interactions
Changelog
MoveLabwareTools
and create the check box and dropdown fieldsRisk assessment
low