[Security solution][Endpoint] Endpoint list columns are too compressed after new side bar (#103487)

* Adjusts columns width after adding new side nav bar

* Resize columns width
This commit is contained in:
David Sánchez 2021-06-29 15:48:18 +02:00 committed by GitHub
parent 0f79872219
commit 480ccd5c98
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -251,6 +251,7 @@ export const EndpointList = () => {
return [
{
field: 'metadata',
width: '15%',
name: i18n.translate('xpack.securitySolution.endpoint.list.hostname', {
defaultMessage: 'Hostname',
}),
@ -370,6 +371,7 @@ export const EndpointList = () => {
},
{
field: 'metadata.host.ip',
width: '12%',
name: i18n.translate('xpack.securitySolution.endpoint.list.ip', {
defaultMessage: 'IP Address',
}),
@ -388,7 +390,7 @@ export const EndpointList = () => {
},
{
field: 'metadata.agent.version',
width: '5%',
width: '9%',
name: i18n.translate('xpack.securitySolution.endpoint.list.endpointVersion', {
defaultMessage: 'Version',
}),
@ -396,6 +398,7 @@ export const EndpointList = () => {
{
field: 'metadata.@timestamp',
name: lastActiveColumnName,
width: '9%',
render(dateValue: HostInfo['metadata']['@timestamp']) {
return (
<FormattedDate
@ -408,7 +411,7 @@ export const EndpointList = () => {
},
{
field: '',
width: '5%',
width: '8%',
name: i18n.translate('xpack.securitySolution.endpoint.list.actions', {
defaultMessage: 'Actions',
}),