Skip to content

Commit

Permalink
Updates based on feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
smith committed Oct 8, 2019
1 parent 583deb8 commit 41d4dd0
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import { UserAgent } from '../../../../typings/es_schemas/raw/fields/UserAgent';
type UserAgentSummaryItemProps = UserAgent;

const Version = styled('span')`
color: ${theme.textColors.subdued};
font-size: ${theme.euiFontSizeS};
`;

Expand All @@ -24,9 +23,12 @@ export function UserAgentSummaryItem({
}: UserAgentSummaryItemProps) {
return (
<EuiToolTip
content={i18n.translate('xpack.apm.transactionDetails.userAgentLabel', {
defaultMessage: 'User agent'
})}
content={i18n.translate(
'xpack.apm.transactionDetails.userAgentAndVersionLabel',
{
defaultMessage: 'User agent & version'
}
)}
>
<>
{name}&nbsp;
Expand Down

0 comments on commit 41d4dd0

Please sign in to comment.