fix tech radar modal width

Signed-off-by: Sander Sluis <ssluis@bol.com>
This commit is contained in:
Sander Sluis
2023-08-24 13:52:11 +02:00
parent f718fbaeb8
commit 80b4d0b34f
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>