Merge pull request #9148 from brethubbard/master

Make linkTarget configurable in MarkdownContent component
This commit is contained in:
Johan Haals
2022-01-27 15:02:08 +01:00
committed by GitHub
4 changed files with 11 additions and 2 deletions
@@ -19,4 +19,4 @@ import { MarkdownContent } from '@backstage/core-components';
import { FieldProps } from '@rjsf/core';
export const DescriptionField = ({ description }: FieldProps) =>
description && <MarkdownContent content={description} />;
description && <MarkdownContent content={description} linkTarget="_blank" />;