Skip to content

Commit

Permalink
[APM] Change View full trace button fill (#102066)
Browse files Browse the repository at this point in the history
  • Loading branch information
formgeist committed Jun 14, 2021
1 parent 666bce3 commit 767b67d
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const MaybeViewTraceLink = ({
}
)}
>
<EuiButton iconType="apmTrace" disabled={true}>
<EuiButton fill iconType="apmTrace" disabled={true}>
{viewFullTraceButtonLabel}
</EuiButton>
</EuiToolTip>
Expand All @@ -67,7 +67,7 @@ export const MaybeViewTraceLink = ({
}
)}
>
<EuiButton iconType="apmTrace" disabled={true}>
<EuiButton fill iconType="apmTrace" disabled={true}>
{viewFullTraceButtonLabel}
</EuiButton>
</EuiToolTip>
Expand All @@ -92,7 +92,9 @@ export const MaybeViewTraceLink = ({
environment={nextEnvironment}
latencyAggregationType={latencyAggregationType}
>
<EuiButton iconType="apmTrace">{viewFullTraceButtonLabel}</EuiButton>
<EuiButton fill iconType="apmTrace">
{viewFullTraceButtonLabel}
</EuiButton>
</TransactionDetailLink>
</EuiFlexItem>
);
Expand Down

0 comments on commit 767b67d

Please sign in to comment.