Skip to content

Commit

Permalink
report dropdown (#14852)
Browse files Browse the repository at this point in the history
  • Loading branch information
AAfghahi authored May 26, 2021
1 parent ae8378a commit 80d22f5
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions superset-frontend/src/views/CRUD/alert/AlertReportModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
`;
Expand Down Expand Up @@ -979,7 +985,7 @@ const AlertReportModal: FunctionComponent<AlertReportModalProps> = ({
));

return (
<Modal
<StyledModal
className="no-content-padding"
responsive
disablePrimaryButton={disableSave}
Expand Down Expand Up @@ -1308,7 +1314,7 @@ const AlertReportModal: FunctionComponent<AlertReportModalProps> = ({
</div>
</div>
</StyledSectionContainer>
</Modal>
</StyledModal>
);
};

Expand Down

0 comments on commit 80d22f5

Please sign in to comment.