diff --git a/superset-frontend/src/views/CRUD/alert/AlertReportModal.tsx b/superset-frontend/src/views/CRUD/alert/AlertReportModal.tsx index db6878c276922..008a39e6575f4 100644 --- a/superset-frontend/src/views/CRUD/alert/AlertReportModal.tsx +++ b/superset-frontend/src/views/CRUD/alert/AlertReportModal.tsx @@ -129,6 +129,12 @@ const DEFAULT_ALERT = { grace_period: undefined, }; +const StyledModal = styled(Modal)` + .ant-modal-body { + overflow: initial; + } +`; + const StyledIcon = styled(Icon)` margin: auto ${({ theme }) => theme.gridUnit * 2}px auto 0; `; @@ -979,7 +985,7 @@ const AlertReportModal: FunctionComponent = ({ )); return ( - = ({ - + ); };