From 1d94f0f9f797232d098fb2ca5ff0023412c28f97 Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Sun, 29 Mar 2026 11:57:22 +0200 Subject: [PATCH] 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 Made-with: Cursor --- plugins/scaffolder/src/components/ActionsPage/ActionsPage.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/scaffolder/src/components/ActionsPage/ActionsPage.tsx b/plugins/scaffolder/src/components/ActionsPage/ActionsPage.tsx index 560ffd7136..3cfd4a1873 100644 --- a/plugins/scaffolder/src/components/ActionsPage/ActionsPage.tsx +++ b/plugins/scaffolder/src/components/ActionsPage/ActionsPage.tsx @@ -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;