From febb198a8ab7b4407d72d881b319c84ed73ee5d3 Mon Sep 17 00:00:00 2001 From: ruby Date: Sat, 19 Oct 2024 03:54:35 +0800 Subject: [PATCH] style(ux-dashboards): fixed width from saved object type column (#194388) ## Summary Fixes https://github.com/elastic/kibana/issues/193750 Removed the fixed width of 50px from the type column in the saved object finder UI to allow for more flexible and responsive table formatting. Before: ![image](https://github.com/user-attachments/assets/df4d312c-8956-482e-a91e-643831e7364e) Now: ![image](https://github.com/user-attachments/assets/987f37e6-b14e-41c5-a435-ce2539936c7c) But I'm not sure if changing the width to 70px is more appropriate ![image](https://github.com/user-attachments/assets/f6a52146-bc7a-4d65-b86c-a7c1393c88f5) --------- Co-authored-by: Elastic Machine Co-authored-by: Davis McPhee --- .../saved_objects_finder/public/finder/saved_object_finder.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/saved_objects_finder/public/finder/saved_object_finder.tsx b/src/plugins/saved_objects_finder/public/finder/saved_object_finder.tsx index 86940d52a81b32..e9f51a808b335a 100644 --- a/src/plugins/saved_objects_finder/public/finder/saved_object_finder.tsx +++ b/src/plugins/saved_objects_finder/public/finder/saved_object_finder.tsx @@ -231,7 +231,7 @@ export class SavedObjectFinderUi extends React.Component< name: i18n.translate('savedObjectsFinder.typeName', { defaultMessage: 'Type', }), - width: '50px', + width: '70px', align: 'center', description: i18n.translate('savedObjectsFinder.typeDescription', { defaultMessage: 'Type of the saved object',