Merge pull request #21025 from backstage/iegik/master

[Catalog] Update content Items key on default import page
This commit is contained in:
Fredrik Adelöw
2023-11-07 16:14:14 +01:00
committed by GitHub
2 changed files with 7 additions and 2 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog-import': patch
---
Fix missing children key warning on the default catalog import page.
@@ -39,11 +39,11 @@ export const DefaultImportPage = () => {
const appTitle = configApi.getOptionalString('app.title') || 'Backstage';
const contentItems = [
<Grid item xs={12} md={4} lg={6} xl={8}>
<Grid key={0} item xs={12} md={4} lg={6} xl={8}>
<ImportInfoCard />
</Grid>,
<Grid item xs={12} md={8} lg={6} xl={4}>
<Grid key={1} item xs={12} md={8} lg={6} xl={4}>
<ImportStepper />
</Grid>,
];