Skip to content

Commit

Permalink
[APM] Truncate long service names in Trace overview (#86759)
Browse files Browse the repository at this point in the history
* truncating service name

* truncating service name
  • Loading branch information
cauemarcondes authored Dec 23, 2020
1 parent 21b34bc commit 4613da5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const traceListColumns: Array<ITableColumn<TraceGroup>> = [
_: string,
{ serviceName, transactionName, transactionType }: TraceGroup
) => (
<EuiToolTip content={transactionName}>
<EuiToolTip content={transactionName} anchorClassName="eui-textTruncate">
<StyledTransactionLink
serviceName={serviceName}
transactionName={transactionName}
Expand Down

0 comments on commit 4613da5

Please sign in to comment.