Skip to content

Commit

Permalink
[APM] Change View full trace button fill (elastic#102066) (elastic#10…
Browse files Browse the repository at this point in the history
…2098)

Co-authored-by: Casper Hübertz <casper@elastic.co>
  • Loading branch information
kibanamachine and formgeist committed Jun 14, 2021
1 parent 17563a2 commit 7d31209
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 7d31209

Please sign in to comment.