[ResponseOps][Cases]Fix table layout in the add to existing case modal (#217653)

Closes https://github.com/elastic/kibana/issues/216582
## Summary

- increased column width to fit the `select` button


https://github.com/user-attachments/assets/64199991-c765-40e4-8d17-38cb6dfd16f6
This commit is contained in:
Georgiana-Andreea Onoleață 2025-04-10 12:32:28 +03:00 committed by GitHub
parent 9924886236
commit 47726988dc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View file

@ -313,7 +313,7 @@ describe('useCasesColumns ', () => {
Object {
"align": "right",
"render": [Function],
"width": "70px",
"width": "120px",
},
],
"isLoadingColumns": false,
@ -364,7 +364,7 @@ describe('useCasesColumns ', () => {
Object {
"align": "right",
"render": [Function],
"width": "70px",
"width": "120px",
},
],
"isLoadingColumns": false,
@ -415,7 +415,7 @@ describe('useCasesColumns ', () => {
Object {
"align": "right",
"render": [Function],
"width": "70px",
"width": "120px",
},
],
"isLoadingColumns": false,

View file

@ -325,7 +325,7 @@ export const useCasesColumns = ({
}
return getEmptyCellValue();
},
width: '70px',
width: '120px',
},
}),
[assignCaseAction, casesColumnsConfig, connectors, isSelectorView, userProfiles]