Ant design rc-time-picker position wrong on Modal with animation

912 Views Asked by At
  <div>
    <Button onClick={() => this.setState({ show: true })}>Open</Button>
    <Modal
      show={this.state.show}
      onHide={() => this.setState({ show: false })}
      animation={true}
    >
      <Modal.Header closeButton>
        <Modal.Title>Modal</Modal.Title>
      </Modal.Header>
      <Modal.Body>
        <TimePicker open getPopupContainer={triggerNode => triggerNode.parentNode}/>
        <div style={{ height: '370px' }} />
      </Modal.Body>
    </Modal>
  </div>

With animation enabled, it becomes https://i.stack.imgur.com/Qq0Kp.png

Without animation: https://i.stack.imgur.com/CGk0Y.png

Edit ryj98no4xn

Any clue how to fix it?

0

There are 0 best solutions below