fix: prevent actions list from expanding beyond screen edge

Add minWidth and overflow constraints to the List component so long
descriptions are truncated with ellipsis instead of overflowing the
grid column.

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
Made-with: Cursor
This commit is contained in:
Patrik Oldsberg
2026-03-29 11:57:22 +02:00
parent 693c6e8277
commit 1d94f0f9f7
@@ -176,6 +176,7 @@ export const ActionPageContent = () => {
selectionMode="single"
selectionBehavior="toggle"
selectedKeys={selectedActionId ? [selectedActionId] : []}
style={{ minWidth: 0, overflow: 'hidden' }}
onSelectionChange={selection => {
if (selection === 'all') {
return;