We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15dd9a8 commit 131d8beCopy full SHA for 131d8be
airflow/www/static/js/dag/details/ConfirmDialog.tsx
@@ -47,6 +47,7 @@ const ConfirmDialog = ({
47
}: Props) => {
48
const initialFocusRef = useRef<HTMLButtonElement>(null);
49
const containerRef = useContainerRef();
50
+
51
return (
52
<AlertDialog
53
isOpen={isOpen}
@@ -58,12 +59,12 @@ const ConfirmDialog = ({
58
59
blockScrollOnMount={false}
60
>
61
<AlertDialogOverlay>
- <AlertDialogContent>
62
+ <AlertDialogContent maxHeight="90vh">
63
<AlertDialogHeader fontSize="4xl" fontWeight="bold">
64
{title}
65
</AlertDialogHeader>
66
- <AlertDialogBody>
67
+ <AlertDialogBody overflowY="auto">
68
<Text mb={2}>{description}</Text>
69
{Array.isArray(body) && body.map((ti) => (<Code key={ti} fontSize="lg">{ti}</Code>))}
70
</AlertDialogBody>
0 commit comments