Skip to content

Commit 7680e96

Browse files
authored
fix: if popover has actions increase delayClosing (#1573)
1 parent a3a3978 commit 7680e96

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

src/components/NodeHostWrapper/NodeHostWrapper.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ export const NodeHostWrapper = ({node, getNodeRef, database}: NodeHostWrapperPro
4747
content={<NodeEndpointsTooltipContent data={node} nodeHref={nodeHref} />}
4848
placement={['top', 'bottom']}
4949
behavior={PopoverBehavior.Immediate}
50+
delayClosing={200}
5051
>
5152
<EntityStatus
5253
name={node.Host}

src/components/TabletNameWrapper/TabletNameWrapper.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export function TabletNameWrapper({tabletId, database}: TabletNameWrapperProps)
2323
return (
2424
<CellWithPopover
2525
disabled={!isUserAllowedToMakeChanges}
26+
delayClosing={200}
2627
content={
2728
<DefinitionList responsive>
2829
<DefinitionList.Item name={i18n('field_links')}>

src/components/TenantNameWrapper/TenantNameWrapper.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ export function TenantNameWrapper({tenant, additionalTenantsProps}: TenantNameWr
4444
return (
4545
<CellWithPopover
4646
disabled={!isUserAllowedToMakeChanges || !monitoringLink}
47+
delayClosing={200}
4748
content={
4849
monitoringLink ? (
4950
<DefinitionList responsive>

0 commit comments

Comments
 (0)