Skip to content

Commit

Permalink
fix(app): increase size of robot version mismatch tooltip (#16064)
Browse files Browse the repository at this point in the history
closes RQA-2857
  • Loading branch information
shlokamin authored Aug 28, 2024
1 parent 2d34885 commit cd1a05b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import {
SPACING,
SIZE_1,
ALIGN_CENTER,
FLEX_MAX_CONTENT,
} from '@opentrons/components'
import { useDeleteRunMutation } from '@opentrons/react-api-client'

Expand Down Expand Up @@ -165,7 +166,6 @@ function MenuDropdown(props: MenuDropdownProps): JSX.Element {

return (
<Flex
whiteSpace="nowrap"
zIndex={10}
borderRadius="4px 4px 0px 0px"
boxShadow="0px 1px 3px rgba(0, 0, 0, 0.2)"
Expand All @@ -174,6 +174,7 @@ function MenuDropdown(props: MenuDropdownProps): JSX.Element {
top="2.3rem"
right={0}
flexDirection={DIRECTION_COLUMN}
width={FLEX_MAX_CONTENT}
>
<NavLink to={`/devices/${robotName}/protocol-runs/${runId}/run-preview`}>
<MenuItem data-testid="RecentProtocolRun_OverflowMenu_viewRunRecord">
Expand Down

0 comments on commit cd1a05b

Please sign in to comment.