Skip to content

Commit

Permalink
Fix Refersh Interval Modal dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
agatapst committed Jan 11, 2021
1 parent ff7b789 commit 16094f1
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ export const options = [
[86400, t('24 hours')],
].map(o => ({ value: o[0], label: o[1] }));

const StyledModalTrigger = styled(ModalTrigger)`
.ant-modal-body {
overflow: visible;
}
`;

const RefreshWarningContainer = styled.div`
margin-top: ${({ theme }) => theme.gridUnit * 6}px;
`;
Expand Down Expand Up @@ -103,7 +109,7 @@ class RefreshIntervalModal extends React.PureComponent<
!!refreshFrequency && !!refreshWarning && refreshFrequency < refreshLimit;

return (
<ModalTrigger
<StyledModalTrigger
ref={this.modalRef}
triggerNode={this.props.triggerNode}
modalTitle={t('Refresh Interval')}
Expand Down

0 comments on commit 16094f1

Please sign in to comment.