Merge pull request #24754 from erik-adsk/master

Use linkTarget in ScaffolderField to enable parameter descriptions to open in a new tab as intended
This commit is contained in:
Ben Lambert
2024-05-15 19:13:12 +02:00
committed by GitHub
2 changed files with 6 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder-react': patch
---
Links that are rendered in the markdown in the `ScaffolderField` component are now opened in new tabs.
@@ -76,6 +76,7 @@ export const ScaffolderField = (
{displayLabel && rawDescription ? (
<MarkdownContent
content={rawDescription}
linkTarget="_blank"
className={classes.markdownDescription}
/>
) : null}