-
Notifications
You must be signed in to change notification settings - Fork 178
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(app): Plate reader in LPC and CommandText, filter out plate reader lid as labware #16489
Conversation
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.
Command text looks great, thank you!
@@ -1,4 +1,8 @@ | |||
{ | |||
"absorbance_reader_open_lid": "Opening Absorbance Reader lid", | |||
"absorbance_reader_close_lid": "Closing Absorbance Reader lid", | |||
"absorbance_reader_initialize": "Initializing Absorbance Reader to perform {{mode}} measurement at {{wavelengths}}", |
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.
Hmm, can't hurt. We would tack on with reference of {{referenceWavelength}} nm
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.
added!
@@ -46,7 +46,7 @@ export const AbsorbanceReaderData = ( | |||
data-testid="abs_module_data" | |||
> | |||
{t('abs_reader_lid_status', { | |||
status: moduleData.lidStatus === 'on' ? 'open' : 'closed', | |||
status: moduleData.lidStatus === 'on' ? 'closed' : 'open', |
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 catch
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 looks good, just left a small comment on the initialize command copy.
fix PLAT-483, PLAT-525, PLAT-526, PLAT-547, RQA-3310
Overview
This PR cleans up a few things for plate reader support in the UI, enables LPC, hides the labware lid from protocol setup and details, and wires up command text
Test Plan and Hands on Testing
Reviewed the following locations to make sure plate reader lid does not display:
Looked at run preview for protocol that uses absorbance reader, view command text updates
Ran LPC for protocol that uses absorbance reader
Changelog
Review requests
Look over screenshots and command types
Risk assessment
Low