From 728b2729a6350b228d6233dad91340e2c6483002 Mon Sep 17 00:00:00 2001 From: Ryland Herrick Date: Thu, 2 Jul 2020 17:12:55 -0500 Subject: [PATCH] Tweaking Table column sizes Makes actions column smaller, leaving more room for everything else. --- .../alerts/components/value_lists_management_modal/table.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/plugins/security_solution/public/alerts/components/value_lists_management_modal/table.tsx b/x-pack/plugins/security_solution/public/alerts/components/value_lists_management_modal/table.tsx index 2532d7c7154dc..07d52603a6fd1 100644 --- a/x-pack/plugins/security_solution/public/alerts/components/value_lists_management_modal/table.tsx +++ b/x-pack/plugins/security_solution/public/alerts/components/value_lists_management_modal/table.tsx @@ -45,7 +45,7 @@ const buildColumns = ( field: 'created_by', name: i18n.COLUMN_CREATED_BY, truncateText: true, - width: '15%', + width: '20%', }, { name: i18n.COLUMN_ACTIONS, @@ -67,6 +67,7 @@ const buildColumns = ( 'data-test-subj': 'action-delete-value-list', }, ], + width: '15%', }, ];