forked from fedi/mastodon
Fix error on reloading status detail column (#5248)
This commit is contained in:
parent
c75ca0525b
commit
d5f490b1a2
|
@ -242,8 +242,8 @@ export default class Status extends ImmutablePureComponent {
|
||||||
componentDidUpdate () {
|
componentDidUpdate () {
|
||||||
const { ancestorsIds } = this.props;
|
const { ancestorsIds } = this.props;
|
||||||
|
|
||||||
if (ancestorsIds) {
|
if (ancestorsIds && ancestorsIds.size > 0) {
|
||||||
const element = this.node.querySelectorAll('.focusable')[this.props.ancestorsIds.size];
|
const element = this.node.querySelectorAll('.focusable')[ancestorsIds.size];
|
||||||
element.scrollIntoView();
|
element.scrollIntoView();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue