diff --git a/plugins/scaffolder/src/components/ActionsPage/ActionsPage.tsx b/plugins/scaffolder/src/components/ActionsPage/ActionsPage.tsx index 3f21b75322..5e7f9810c5 100644 --- a/plugins/scaffolder/src/components/ActionsPage/ActionsPage.tsx +++ b/plugins/scaffolder/src/components/ActionsPage/ActionsPage.tsx @@ -251,7 +251,9 @@ export const ActionsPage = () => { return ( <> - {name} + + {name} + {input.map((i, index) => (
{renderTable( @@ -275,13 +277,15 @@ export const ActionsPage = () => { ); return ( - + {action.id} {action.description && } {action.schema?.input && ( - Input + + Input + {renderTable( formatRows(`${action.id}.input`, action?.schema?.input), )} @@ -290,7 +294,9 @@ export const ActionsPage = () => { )} {action.schema?.output && ( - Output + + Output + {renderTable( formatRows(`${action.id}.output`, action?.schema?.output), )} @@ -299,7 +305,9 @@ export const ActionsPage = () => { {action.examples && ( }> - Examples + + Examples + diff --git a/plugins/scaffolder/src/components/ListTasksPage/OwnerListPicker.tsx b/plugins/scaffolder/src/components/ListTasksPage/OwnerListPicker.tsx index a9e3917922..820c4d168d 100644 --- a/plugins/scaffolder/src/components/ListTasksPage/OwnerListPicker.tsx +++ b/plugins/scaffolder/src/components/ListTasksPage/OwnerListPicker.tsx @@ -99,7 +99,11 @@ export const OwnerListPicker = (props: { {filterGroups.map(group => ( - + {group.name} diff --git a/plugins/scaffolder/src/components/TemplateEditorPage/TemplateEditorIntro.tsx b/plugins/scaffolder/src/components/TemplateEditorPage/TemplateEditorIntro.tsx index 61e6c46964..2a75c1bf2c 100644 --- a/plugins/scaffolder/src/components/TemplateEditorPage/TemplateEditorIntro.tsx +++ b/plugins/scaffolder/src/components/TemplateEditorPage/TemplateEditorIntro.tsx @@ -59,7 +59,8 @@ export function TemplateEditorIntro(props: EditorIntroProps) { > props.onSelect?.('form')}> - + Edit Template Form @@ -108,7 +109,7 @@ export function TemplateEditorIntro(props: EditorIntroProps) { props.onSelect?.('field-explorer')}> - + Custom Field Explorer @@ -122,7 +123,7 @@ export function TemplateEditorIntro(props: EditorIntroProps) { return (
- + Get started by choosing one of the options below