Incorporated the feedback

Signed-off-by: bnechyporenko <bnechyporenko@bol.com>
This commit is contained in:
bnechyporenko
2022-09-19 18:39:54 +02:00
parent aa6372c0bb
commit 4b4e8975aa
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -285,7 +285,7 @@ export function EntityRefLinks(props: EntityRefLinksProps): JSX.Element;
export type EntityRefLinksProps = {
entityRefs: (string | Entity | CompoundEntityRef)[];
defaultKind?: string;
getTitle?: (cer: CompoundEntityRef) => string;
getTitle?: (cer: CompoundEntityRef) => string | undefined;
} & Omit<LinkProps, 'to'>;
// @public
@@ -26,7 +26,7 @@ import { LinkProps } from '@backstage/core-components';
export type EntityRefLinksProps = {
entityRefs: (string | Entity | CompoundEntityRef)[];
defaultKind?: string;
getTitle?: (cer: CompoundEntityRef) => string;
getTitle?: (cer: CompoundEntityRef) => string | undefined;
} & Omit<LinkProps, 'to'>;
/**