logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: d5f490b1a2c77a755ae4bd2e73a15a7567eda4c1
parent: c75ca0525b5c7fd85a036d71b7b484a2072d701a
Author: K.SHIRAKASHI <k.shira86@gmail.com>
Date:   Sat,  7 Oct 2017 03:37:56 +0900

Fix error on reloading status detail column (#5248)


Diffstat:

Mapp/javascript/mastodon/features/status/index.js4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app/javascript/mastodon/features/status/index.js b/app/javascript/mastodon/features/status/index.js @@ -242,8 +242,8 @@ export default class Status extends ImmutablePureComponent { componentDidUpdate () { const { ancestorsIds } = this.props; - if (ancestorsIds) { - const element = this.node.querySelectorAll('.focusable')[this.props.ancestorsIds.size]; + if (ancestorsIds && ancestorsIds.size > 0) { + const element = this.node.querySelectorAll('.focusable')[ancestorsIds.size]; element.scrollIntoView(); } }