Skip to content

Commit

Permalink
Fix tests and snapshots
Browse files Browse the repository at this point in the history
Signed-off-by: Miki <[email protected]>
  • Loading branch information
AMoo-Miki committed Aug 19, 2024
1 parent 531989e commit a1459fa
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ export function IntegrationConnectionInputs({
<EuiSpacer />
</>
)}
<EuiFormRow
<EuiCompressedFormRow
label="Connection Type"
helpText="Select the type of connection to use for queries."
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,14 @@
* SPDX-License-Identifier: Apache-2.0
*/

import { EuiButtonIcon, EuiFlexGroup, EuiFlexItem, EuiPopover, EuiText } from '@elastic/eui';
import {
EuiButtonIcon,
EuiSmallButtonIcon,
EuiFlexGroup,
EuiFlexItem,
EuiPopover,
EuiText,
} from '@elastic/eui';
import React, { useState } from 'react';
import { LatencyPlt, LinePlt } from '../common/plots/latency_trend_plt';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,11 @@ export function SpanDetailFlyout(props: {
<EuiFlexItem grow={false}>
<EuiCopy textToCopy={getSpanValue(span, mode, 'SPAN_ID')}>
{(copy) => (
<EuiSmallButtonIcon aria-label="copy-button" onClick={copy} iconType="copyClipboard" />
<EuiSmallButtonIcon
aria-label="copy-button"
onClick={copy}
iconType="copyClipboard"
/>
)}
</EuiCopy>
</EuiFlexItem>
Expand All @@ -145,7 +149,11 @@ export function SpanDetailFlyout(props: {
textToCopy={mode === 'data_prepper' ? span.parentSpanId : span.references[0].spanID}
>
{(copy) => (
<EuiSmallButtonIcon aria-label="copy-button" onClick={copy} iconType="copyClipboard" />
<EuiSmallButtonIcon
aria-label="copy-button"
onClick={copy}
iconType="copyClipboard"
/>
)}
</EuiCopy>
</EuiFlexItem>
Expand Down

0 comments on commit a1459fa

Please sign in to comment.