Skip to content

Commit

Permalink
[ResponseOps][Rules]The rule row actions in the rules table are displ…
Browse files Browse the repository at this point in the history
…ayed incorrectly on smaller screens (elastic#201912)

Closes elastic#193413

## Summary

- set a fixed width for the status column, which solves the issue of the
rule row actions being misaligned and overlapping on smaller screens

<img width="1451" alt="Screenshot 2024-11-27 at 10 20 10"
src="https://github.com/user-attachments/assets/2413e306-2b16-4a96-a127-2ed3550792ad">
  • Loading branch information
georgianaonoleata1904 authored Nov 27, 2024
1 parent 6620529 commit b0d4a21
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit b0d4a21

Please sign in to comment.