From c2b2de4fe127f7b5412ebda914d504901bac22c1 Mon Sep 17 00:00:00 2001 From: Andreas Berger Date: Thu, 5 Feb 2026 11:22:36 +0100 Subject: [PATCH] simplify icon assignment in EntityTabs and fix IconBundleBlueprint link in documentation Signed-off-by: Andreas Berger --- docs/features/software-catalog/catalog-customization.md | 2 +- plugins/catalog/src/alpha/components/EntityTabs/EntityTabs.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/features/software-catalog/catalog-customization.md b/docs/features/software-catalog/catalog-customization.md index bd4a650673..d62bb34505 100644 --- a/docs/features/software-catalog/catalog-customization.md +++ b/docs/features/software-catalog/catalog-customization.md @@ -725,7 +725,7 @@ app: Notes: -- Icons for groups and tabs are resolved via the app's IconsApi. When using a string icon id (for example `"dashboard"`), ensure that the corresponding icon bundles are enabled/installed in your app (see the [IconBundleBlueprint documentation](../../reference/frontend-plugin-api.iconbundleblueprint.md)). +- Icons for groups and tabs are resolved via the app's IconsApi. When using a string icon id (for example `"dashboard"`), ensure that the corresponding icon bundles are enabled/installed in your app (see the [IconBundleBlueprint documentation](https://backstage.io/api/stable/variables/_backstage_plugin-app-react.IconBundleBlueprint.html)). - Group icons are only rendered if `showNavItemIcons` is set to `true`. ### Overriding or disabling a tab's group (per extension) diff --git a/plugins/catalog/src/alpha/components/EntityTabs/EntityTabs.tsx b/plugins/catalog/src/alpha/components/EntityTabs/EntityTabs.tsx index 45ef60217c..f0088f688f 100644 --- a/plugins/catalog/src/alpha/components/EntityTabs/EntityTabs.tsx +++ b/plugins/catalog/src/alpha/components/EntityTabs/EntityTabs.tsx @@ -102,7 +102,7 @@ export function EntityTabs(props: EntityTabsProps) { id: path, path: to, label: title, - icon: icon, + icon, }; }), [routes],