From 7a1cf453624c0c5a5b27428d6ee6167e6cdbe58e Mon Sep 17 00:00:00 2001 From: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Date: Thu, 28 Nov 2024 05:03:46 +1100 Subject: [PATCH] [8.x] [ResponseOps][Rules]The rule row actions in the rules table are displayed incorrectly on smaller screens (#201912) (#202024) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # Backport This will backport the following commits from `main` to `8.x`: - [[ResponseOps][Rules]The rule row actions in the rules table are displayed incorrectly on smaller screens (#201912)](https://github.com/elastic/kibana/pull/201912) ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sqren/backport) Co-authored-by: Georgiana-Andreea Onoleață --- .../sections/rules_list/components/rules_list_table.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/triggers_actions_ui/public/application/sections/rules_list/components/rules_list_table.tsx b/x-pack/plugins/triggers_actions_ui/public/application/sections/rules_list/components/rules_list_table.tsx index 88f22f9687ea6..b325e7fd70a44 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/sections/rules_list/components/rules_list_table.tsx +++ b/x-pack/plugins/triggers_actions_ui/public/application/sections/rules_list/components/rules_list_table.tsx @@ -720,7 +720,7 @@ export const RulesListTable = (props: RulesListTableProps) => { ), sortable: true, truncateText: false, - width: '10%', + width: '100px', 'data-test-subj': 'rulesTableCell-status', render: (_enabled: boolean | undefined, rule: RuleTableItem) => { return renderRuleStatusDropdown(rule);