Skip to content
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
1 change: 1 addition & 0 deletions src/components/NodeHostWrapper/NodeHostWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ export const NodeHostWrapper = ({node, getNodeRef, database}: NodeHostWrapperPro
content={<NodeEndpointsTooltipContent data={node} nodeHref={nodeHref} />}
placement={['top', 'bottom']}
behavior={PopoverBehavior.Immediate}
delayClosing={200}
>
<EntityStatus
name={node.Host}
Expand Down
1 change: 1 addition & 0 deletions src/components/TabletNameWrapper/TabletNameWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export function TabletNameWrapper({tabletId, database}: TabletNameWrapperProps)
return (
<CellWithPopover
disabled={!isUserAllowedToMakeChanges}
delayClosing={200}
content={
<DefinitionList responsive>
<DefinitionList.Item name={i18n('field_links')}>
Expand Down
1 change: 1 addition & 0 deletions src/components/TenantNameWrapper/TenantNameWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ export function TenantNameWrapper({tenant, additionalTenantsProps}: TenantNameWr
return (
<CellWithPopover
disabled={!isUserAllowedToMakeChanges || !monitoringLink}
delayClosing={200}
content={
monitoringLink ? (
<DefinitionList responsive>
Expand Down
Loading