mirror of
https://github.com/mastodon/mastodon.git
synced 2024-12-12 22:25:10 +01:00
[Glitch] Update state when opened dropdown is unmounted
Port dcd3544d15
to glitch-soc
This commit is contained in:
parent
8aa58e34bb
commit
fce248810b
@ -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…
Reference in New Issue
Block a user