From 80d22f5b333e7051cde10e699130bbf107c0c6c5 Mon Sep 17 00:00:00 2001 From: AAfghahi <48933336+AAfghahi@users.noreply.github.com> Date: Wed, 26 May 2021 17:17:35 -0400 Subject: [PATCH] report dropdown (#14852) --- .../src/views/CRUD/alert/AlertReportModal.tsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/superset-frontend/src/views/CRUD/alert/AlertReportModal.tsx b/superset-frontend/src/views/CRUD/alert/AlertReportModal.tsx index db6878c276..008a39e657 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 ( - = ({ - + ); };