Skip to content

Commit

Permalink
fix(app): render correct image for vial and tube racks (#3298)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahiuchingau authored Apr 4, 2019
1 parent 565c50d commit b9e1ebb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/components/CalibrateLabware/instructions-data.js
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ function getTypeKey (props: LabwareCalibrationProps) {
typeKey = 'tiprack'
} else if (type.includes('trough')) {
typeKey = 'trough'
} else if (type.includes('tube-rack')) {
} else if (type.includes('tube') || type.includes('vial')) {
typeKey = 'tuberack'
} else if (type.includes('384')) {
typeKey = 'plate384'
Expand Down

0 comments on commit b9e1ebb

Please sign in to comment.