From e2e5a1498011a23a8eb028d30a750bcbb651fd9c Mon Sep 17 00:00:00 2001 From: Johan Persson Date: Thu, 26 Feb 2026 18:56:05 +0100 Subject: [PATCH] fix(catalog): use Grid.Root instead of Grid for BUI Grid component Signed-off-by: Johan Persson --- plugins/catalog/src/components/AboutCard/AboutContent.tsx | 4 ++-- .../catalog/src/components/EntityLinksCard/LinksGridList.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/catalog/src/components/AboutCard/AboutContent.tsx b/plugins/catalog/src/components/AboutCard/AboutContent.tsx index ee2c8571d5..d35891cd05 100644 --- a/plugins/catalog/src/components/AboutCard/AboutContent.tsx +++ b/plugins/catalog/src/components/AboutCard/AboutContent.tsx @@ -115,7 +115,7 @@ export function AboutContent(props: AboutContentProps) { } return ( - + )} - + ); } diff --git a/plugins/catalog/src/components/EntityLinksCard/LinksGridList.tsx b/plugins/catalog/src/components/EntityLinksCard/LinksGridList.tsx index 1556d30e22..90b7e2058b 100644 --- a/plugins/catalog/src/components/EntityLinksCard/LinksGridList.tsx +++ b/plugins/catalog/src/components/EntityLinksCard/LinksGridList.tsx @@ -36,10 +36,10 @@ export function LinksGridList(props: LinksGridListProps) { const numOfCols = useDynamicColumns(cols); return ( - + {items.map(({ text, href, Icon }, i) => ( ))} - + ); }