parent
5b5ae01824
commit
43b8df3228
1 changed files with 6 additions and 0 deletions
|
@ -226,6 +226,12 @@ export default class Dropdown extends React.PureComponent {
|
||||||
return this.target;
|
return this.target;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
componentWillUnmount = () => {
|
||||||
|
if (this.state.id === this.props.openDropdownId) {
|
||||||
|
this.handleClose();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
render () {
|
render () {
|
||||||
const { icon, items, size, title, disabled, dropdownPlacement, openDropdownId } = this.props;
|
const { icon, items, size, title, disabled, dropdownPlacement, openDropdownId } = this.props;
|
||||||
const open = this.state.id === openDropdownId;
|
const open = this.state.id === openDropdownId;
|
||||||
|
|
Loading…
Reference in a new issue