Merge pull request #19574 from aximusnl/fix-techradar-dialog

[tech-radar] fix tech radar modal width
This commit is contained in:
Johan Haals
2023-08-24 16:24:52 +02:00
committed by GitHub
2 changed files with 12 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-tech-radar': patch
---
Fixed the width of the tech radar dialog so that the content fits
@@ -45,7 +45,13 @@ const RadarDescription = (props: Props): JSX.Element => {
const { open, onClose, title, description, timeline, url, links } = props;
return (
<Dialog data-testid="radar-description" open={open} onClose={onClose}>
<Dialog
data-testid="radar-description"
open={open}
onClose={onClose}
maxWidth="lg"
fullWidth
>
<DialogTitle data-testid="radar-description-dialog-title">
{title}
</DialogTitle>