Skip to content
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

fix(protocol-designer): use µ symbol in pipette capacities #16986

Merged
merged 1 commit into from
Nov 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"trash_required": "A trash entity is required",
"trashBin": "Trash Bin",
"up_to_3_tipracks": "Up to 3 tip rack types are allowed per pipette",
"vol_label": "{{volume}} uL",
"vol_label": "{{volume}} µL",
"wasteChute": "Waste Chute",
"which_fixtures": "Which fixtures will you be using?",
"which_modules": "Select modules to use in your protocol.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ describe('SelectPipettes', () => {
fireEvent.click(screen.getByRole('label', { name: '1-Channel' }))
screen.getByText('Pipette volume')
// select pip volume
fireEvent.click(screen.getByRole('label', { name: '1000 uL' }))
fireEvent.click(screen.getByRole('label', { name: '1000 µL' }))
// select tip
screen.getByText('Add custom pipette tips')
screen.getByText('200uL Flex tipracks')
Expand Down Expand Up @@ -139,7 +139,7 @@ describe('SelectPipettes', () => {

screen.getByText('Pipette volume')
// select pip volume
fireEvent.click(screen.getByRole('label', { name: '20 uL' }))
fireEvent.click(screen.getByRole('label', { name: '20 µL' }))
// select tip
screen.getByText('Add custom pipette tips')
screen.getByText('10uL tipracks')
Expand Down
Loading