Skip to content

Commit

Permalink
[Synthetics] Fixes dom warnings for p > div (#161744)
Browse files Browse the repository at this point in the history
  • Loading branch information
shahzad31 authored Jul 12, 2023
1 parent 5d5c10a commit a78c7b0
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,13 +139,14 @@ export const MetricItem = ({
justifyContent="flexEnd"
// empty title to prevent default title from showing
title=""
component="span"
>
<EuiFlexItem grow={false}>
<EuiFlexItem grow={false} component="span">
{i18n.translate('xpack.synthetics.overview.duration.label', {
defaultMessage: 'Duration',
})}
</EuiFlexItem>
<EuiFlexItem grow={false}>
<EuiFlexItem grow={false} component="span">
<EuiIconTip
title={i18n.translate('xpack.synthetics.overview.duration.description', {
defaultMessage: 'Median duration of last 24 checks',
Expand Down

0 comments on commit a78c7b0

Please sign in to comment.