From 35ce598bc09249ca0d8da06e6bd48edcb3f60123 Mon Sep 17 00:00:00 2001 From: Johan Persson Date: Mon, 2 Mar 2026 11:26:31 +0100 Subject: [PATCH] fix(catalog-react): group header actions in EntityInfoCard Signed-off-by: Johan Persson --- .../src/components/EntityInfoCard/EntityInfoCard.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/plugins/catalog-react/src/components/EntityInfoCard/EntityInfoCard.tsx b/plugins/catalog-react/src/components/EntityInfoCard/EntityInfoCard.tsx index 29bcd59fdf..84cca25b21 100644 --- a/plugins/catalog-react/src/components/EntityInfoCard/EntityInfoCard.tsx +++ b/plugins/catalog-react/src/components/EntityInfoCard/EntityInfoCard.tsx @@ -45,7 +45,11 @@ export function EntityInfoCard(props: EntityInfoCardProps) { {title} - {headerActions} + {headerActions && ( + + {headerActions} + + )} )}