contextMenu prop passed through to ScaffolderPage from Router

Signed-off-by: Jonathan Ash <jonathan-ash@users.noreply.github.com>
This commit is contained in:
Jonathan Ash
2022-07-06 16:27:09 +01:00
parent 3a6f3536f3
commit d600cb2ab6
2 changed files with 7 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder': patch
---
contextMenu prop passed through to <ScaffolderPageContents /> from the <ScaffolderPage /> component
@@ -133,11 +133,13 @@ export const ScaffolderPageContents = ({
export const ScaffolderPage = ({
TemplateCardComponent,
groups,
contextMenu,
}: ScaffolderPageProps) => (
<EntityListProvider>
<ScaffolderPageContents
TemplateCardComponent={TemplateCardComponent}
groups={groups}
contextMenu={contextMenu}
/>
</EntityListProvider>
);