From: Eugen Rochko Date: Thu, 23 Aug 2018 16:28:59 +0000 (+0200) Subject: Fix off-by-one error in aria-posinset (#8388) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=885711afb97b772f7c970ed16e17de799a74c923;p=mastodon.git Fix off-by-one error in aria-posinset (#8388) Fix #8191 --- diff --git a/app/javascript/mastodon/components/intersection_observer_article.js b/app/javascript/mastodon/components/intersection_observer_article.js index e2ce9ec96..de2203a4b 100644 --- a/app/javascript/mastodon/components/intersection_observer_article.js +++ b/app/javascript/mastodon/components/intersection_observer_article.js @@ -109,7 +109,7 @@ export default class IntersectionObserverArticle extends React.Component { return (
+
{children && React.cloneElement(children, { hidden: false })}
);