Skip to content

Commit bef9cc7

Browse files
add the correct class to truncate the names (#79921) (#79957)
Co-authored-by: Kibana Machine <[email protected]> Co-authored-by: Kibana Machine <[email protected]>
1 parent 46ec6f8 commit bef9cc7

File tree

1 file changed

+2
-2
lines changed
  • x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view

1 file changed

+2
-2
lines changed

x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ export const EndpointList = () => {
276276
);
277277
const toRouteUrl = formatUrl(toRoutePath);
278278
return (
279-
<EuiToolTip content={hostname} anchorClassName="eui-fullWidth">
279+
<EuiToolTip content={hostname} anchorClassName="eui-textTruncate">
280280
<EndpointListNavLink
281281
name={hostname}
282282
href={toRouteUrl}
@@ -320,7 +320,7 @@ export const EndpointList = () => {
320320
// eslint-disable-next-line react/display-name
321321
render: (policy: HostInfo['metadata']['Endpoint']['policy']['applied']) => {
322322
return (
323-
<EuiToolTip content={policy.name} anchorClassName="eui-fullWidth">
323+
<EuiToolTip content={policy.name} anchorClassName="eui-textTruncate">
324324
<EndpointPolicyLink
325325
policyId={policy.id}
326326
className="eui-textTruncate"

0 commit comments

Comments
 (0)