The modal-handling code gives back focus to the element focused when the
modal opened. However, in the case of reply confirmation, it would do so
*after* the composer code itself requested focus.
} else if (!nextProps.children) {
this.setState({ revealed: false });
}
+ if (!nextProps.children && !!this.props.children) {
+ this.activeElement.focus();
+ this.activeElement = null;
+ }
}
componentDidUpdate (prevProps) {
if (!this.props.children && !!prevProps.children) {
this.getSiblings().forEach(sibling => sibling.removeAttribute('inert'));
- this.activeElement.focus();
- this.activeElement = null;
}
if (this.props.children) {
requestAnimationFrame(() => {