Skip to content

Commit

Permalink
[Uptime] Context Menu Improved for integrations links in monitors list (
Browse files Browse the repository at this point in the history
elastic#43068)

* up time integerations context menu, wrapping remove to make it more symmetric

* Updated unit test snapshot
  • Loading branch information
shahzad31 authored Aug 14, 2019
1 parent d681368 commit 627bc54
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const IntegrationLink = ({
tooltipContent,
}: IntegrationLinkProps) =>
typeof href === 'undefined' ? (
<EuiFlexGroup>
<EuiFlexGroup responsive={false}>
<EuiFlexItem grow={false}>
<EuiToolTip
content={i18n.translate('xpack.uptime.integrationLink.missingDataMessage', {
Expand All @@ -40,7 +40,7 @@ export const IntegrationLink = ({
</EuiFlexGroup>
) : (
<EuiLink aria-label={ariaLabel} href={href}>
<EuiFlexGroup>
<EuiFlexGroup responsive={false}>
<EuiFlexItem grow={false}>
<EuiToolTip content={tooltipContent} position="top">
<EuiIcon type={iconType} />
Expand Down

0 comments on commit 627bc54

Please sign in to comment.