Hi @cheton ,
After upgrading to 2.3.0, child components in <Modal.Body> are unable to get correct clientWidth on componentDidMount(). It works good on version 2.2.2.
componentDidMount() {
const element = ReactDOM.findDOMNode(this.node);
const clientWidth = element.clientWidth; // => 0
}
Hi @cheton ,
After upgrading to 2.3.0, child components in
<Modal.Body>are unable to get correct clientWidth oncomponentDidMount(). It works good on version 2.2.2.