mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[Security Solution] Breaks very long hostnames so they are readable (#97253)
* Breaks very long hostnames so they are readable fixes elastic/kibana/issues/96282 * use utility class instead review change
This commit is contained in:
parent
069b04bed6
commit
d47ee56e93
1 changed files with 1 additions and 1 deletions
|
@ -245,7 +245,7 @@ export const EndpointDetails = memo(
|
|||
title: i18n.translate('xpack.securitySolution.endpoint.details.hostname', {
|
||||
defaultMessage: 'Hostname',
|
||||
}),
|
||||
description: <EuiText>{details.host.hostname}</EuiText>,
|
||||
description: <EuiText className="eui-textBreakAll">{details.host.hostname}</EuiText>,
|
||||
},
|
||||
{
|
||||
title: i18n.translate('xpack.securitySolution.endpoint.details.endpointVersion', {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue