From 96091d32d0ae337bc6317f61764c44ee856f2465 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Pi=C4=85tkiewicz?= Date: Mon, 10 Jun 2024 15:04:54 +0200 Subject: [PATCH 1/2] fix missing actions after adding pagination to catalog table #25097 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Piotr Piątkiewicz --- .../src/components/CatalogTable/PaginatedCatalogTable.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/catalog/src/components/CatalogTable/PaginatedCatalogTable.tsx b/plugins/catalog/src/components/CatalogTable/PaginatedCatalogTable.tsx index 38691b49d2..6692d5fbfe 100644 --- a/plugins/catalog/src/components/CatalogTable/PaginatedCatalogTable.tsx +++ b/plugins/catalog/src/components/CatalogTable/PaginatedCatalogTable.tsx @@ -29,7 +29,8 @@ type PaginatedCatalogTableProps = { * @internal */ export function PaginatedCatalogTable(props: PaginatedCatalogTableProps) { - const { columns, data, next, prev, title, isLoading, options } = props; + const { columns, data, next, prev, title, isLoading, options, ...restProps } = + props; return ( ); } From e04e57d1c2e5f9e9bf5638d004860daea7a246b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Pi=C4=85tkiewicz?= Date: Mon, 10 Jun 2024 15:09:10 +0200 Subject: [PATCH 2/2] added changeset after bugfix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Piotr Piątkiewicz --- .changeset/nice-kangaroos-occur.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/nice-kangaroos-occur.md diff --git a/.changeset/nice-kangaroos-occur.md b/.changeset/nice-kangaroos-occur.md new file mode 100644 index 0000000000..9798885d1a --- /dev/null +++ b/.changeset/nice-kangaroos-occur.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-catalog': patch +--- + +Fix bug with missing Actions column after adding "pagination" prop to catalog table