Browse Source

[Glitch] Update state when opened dropdown is unmounted

Port dcd3544d15 to glitch-soc
closed-social-glitch-2
Thibaut Girka 5 years ago
committed by ThibG
parent
commit
fce248810b
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      app/javascript/flavours/glitch/components/dropdown_menu.js

+ 6
- 0
app/javascript/flavours/glitch/components/dropdown_menu.js View File

@ -225,6 +225,12 @@ export default class Dropdown extends React.PureComponent {
return this.target;
}
componentWillUnmount = () => {
if (this.state.id === this.props.openDropdownId) {
this.handleClose();
}
}
render () {
const { icon, items, size, ariaLabel, disabled, dropdownPlacement, openDropdownId } = this.props;
const open = this.state.id === openDropdownId;

Loading…
Cancel
Save