report dropdown (#14852)

This commit is contained in:
AAfghahi 2021-05-26 17:17:35 -04:00 committed by GitHub
parent ae8378a50e
commit 80d22f5b33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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