From 74314c8999f6e7b7bb0ec019bcd79d315ec5db9c Mon Sep 17 00:00:00 2001 From: nikolar Date: Tue, 10 Dec 2024 17:01:38 -0800 Subject: [PATCH] fix api report Signed-off-by: nikolar --- plugins/techdocs/report.api.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/plugins/techdocs/report.api.md b/plugins/techdocs/report.api.md index d4e7750435..073d843872 100644 --- a/plugins/techdocs/report.api.md +++ b/plugins/techdocs/report.api.md @@ -13,7 +13,8 @@ import { CSSProperties } from '@material-ui/styles/withStyles'; import { DiscoveryApi } from '@backstage/core-plugin-api'; import { Entity } from '@backstage/catalog-model'; import { EntityFilterQuery } from '@backstage/catalog-client'; -import { EntityListPagination, EntityOwnerPickerProps } from '@backstage/plugin-catalog-react'; +import { EntityListPagination } from '@backstage/plugin-catalog-react'; +import { EntityOwnerPickerProps } from '@backstage/plugin-catalog-react'; import { FetchApi } from '@backstage/core-plugin-api'; import { IdentityApi } from '@backstage/core-plugin-api'; import { JSX as JSX_2 } from 'react'; @@ -218,7 +219,7 @@ export type InfoCardGridClassKey = 'linkSpacer' | 'readMoreLink'; export type InfoCardGridProps = { entities: Entity[] | undefined; linkContent?: string | JSX.Element; - linkDestination?: (entity: Entity) => string; + linkDestination?: (entity: Entity) => string | undefined; }; // @public @@ -245,7 +246,7 @@ export interface PanelProps { // (undocumented) linkContent?: string | JSX.Element; // (undocumented) - linkDestination?: (entity: Entity) => string; + linkDestination?: (entity: Entity) => string | undefined; // (undocumented) options?: TableOptions; // (undocumented)