Commit 95a88f7
authored
fix(shared-data, app): Update millipore labware names (#19727)
# Overview
Change MILLIPLEX lid and plate display name
## Test Plan and Hands on Testing
Simulated labware-library to confirm display change
<img width="422" height="354" alt="Screenshot 2025-10-06 at 1 15 56 PM"
src="https://github.com/user-attachments/assets/23bff866-56d3-4b6a-aee0-d4ff76e3e17e"
/>
<img width="422" height="348" alt="Screenshot 2025-10-06 at 1 16 08 PM"
src="https://github.com/user-attachments/assets/f9d36afc-46aa-4f56-bfea-cb7fbd161fee"
/>
Simulated this protocol to confirm stacking with compatible labware was
still functional
```
"""Test labware definition ."""
from opentrons.protocol_api import ProtocolContext
from opentrons.protocol_api.module_contexts import HeaterShakerContext
metadata = {
"protocolName": "labware definition checker ",
"author": "Opentrons <protocols@opentrons.com>",
"source": "Protocol Library",
}
requirements = {"robotType": "Flex", "apiLevel": "2.26"}
def run(protocol: ProtocolContext) -> None:
"""Protocol."""
# Lid loading
lid = protocol.load_lid_stack("black_96_well_microtiter_plate_lid", "C1", 1)
labware = protocol.load_labware("milliplex_r_96_well_microtiter_plate", "D3")
# pick up tip
hsh: HeaterShakerContext = protocol.load_module(
"heaterShakerModuleV1", "D1"
) # type: ignore[assignment]
adapter = hsh.load_adapter("opentrons_universal_flat_adapter_type_b")
hsh.open_labware_latch()
protocol.move_labware(labware, adapter, use_gripper = True)
hsh.close_labware_latch()
protocol.move_lid(lid, labware, use_gripper = True)
```
## Changelog
- LID: changed display name, load name, brand, and image file name
- Plate: changed display name, load name, and image file name
- updated `constants.ts`
## Risk assessment
Low
Closes EXEC-1940
Closes EXEC-19411 parent 6ee528b commit 95a88f7
File tree
6 files changed
+14
-14
lines changed- app/src/organisms/ODD/QuickTransferFlow
- labware-library/src/components/labware-ui
- opentrons-ai-client/src/assets/images/labwares
6 files changed
+14
-14
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
65 | 65 | | |
66 | 66 | | |
67 | 67 | | |
68 | | - | |
| 68 | + | |
69 | 69 | | |
70 | 70 | | |
71 | 71 | | |
| |||
140 | 140 | | |
141 | 141 | | |
142 | 142 | | |
143 | | - | |
| 143 | + | |
144 | 144 | | |
145 | 145 | | |
146 | 146 | | |
| |||
194 | 194 | | |
195 | 195 | | |
196 | 196 | | |
197 | | - | |
| 197 | + | |
198 | 198 | | |
199 | 199 | | |
200 | 200 | | |
| |||
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
82 | 82 | | |
83 | 83 | | |
84 | 84 | | |
85 | | - | |
| 85 | + | |
86 | 86 | | |
87 | 87 | | |
88 | 88 | | |
89 | | - | |
| 89 | + | |
90 | 90 | | |
91 | 91 | | |
92 | 92 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
5 | | - | |
| 5 | + | |
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
9 | | - | |
| 9 | + | |
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
| |||
33 | 33 | | |
34 | 34 | | |
35 | 35 | | |
36 | | - | |
| 36 | + | |
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
40 | 40 | | |
41 | 41 | | |
42 | | - | |
| 42 | + | |
43 | 43 | | |
44 | 44 | | |
45 | 45 | | |
46 | 46 | | |
47 | | - | |
| 47 | + | |
48 | 48 | | |
49 | 49 | | |
50 | 50 | | |
| |||
64 | 64 | | |
65 | 65 | | |
66 | 66 | | |
67 | | - | |
68 | | - | |
| 67 | + | |
| 68 | + | |
69 | 69 | | |
70 | 70 | | |
71 | 71 | | |
| |||
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
21 | | - | |
| 21 | + | |
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
| |||
1002 | 1002 | | |
1003 | 1003 | | |
1004 | 1004 | | |
1005 | | - | |
| 1005 | + | |
1006 | 1006 | | |
1007 | 1007 | | |
1008 | 1008 | | |
| |||
0 commit comments