From 9033775d392b88fa01609889c3a20b1298f4e9a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20Adel=C3=B6w?= Date: Mon, 7 Feb 2022 13:36:30 +0100 Subject: [PATCH] review comments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fredrik Adelöw --- .changeset/ten-geese-hide.md | 5 +++++ .../components/InspectEntityDialog/InspectEntityDialog.tsx | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .changeset/ten-geese-hide.md diff --git a/.changeset/ten-geese-hide.md b/.changeset/ten-geese-hide.md new file mode 100644 index 0000000000..c2386fc44f --- /dev/null +++ b/.changeset/ten-geese-hide.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-catalog': patch +--- + +Deprecated the `EntityPageLayout`; please use the new extension based `CatalogEntityPage` instead diff --git a/plugins/catalog-react/src/components/InspectEntityDialog/InspectEntityDialog.tsx b/plugins/catalog-react/src/components/InspectEntityDialog/InspectEntityDialog.tsx index 2e904e4eb9..bfb5fd4179 100644 --- a/plugins/catalog-react/src/components/InspectEntityDialog/InspectEntityDialog.tsx +++ b/plugins/catalog-react/src/components/InspectEntityDialog/InspectEntityDialog.tsx @@ -55,8 +55,8 @@ const useStyles = makeStyles(theme => ({ function TabPanel(props: { children?: React.ReactNode; - index: any; - value: any; + index: number; + value: number; }) { const { children, value, index, ...other } = props; const classes = useStyles();