[Glitch] Fix off-by-one error in aria-posinset

Port 8793403289 to glitch-soc
th-downstream
Thibaut Girka 6 years ago
parent 4aa1be379e
commit d4315a279d

@ -107,7 +107,7 @@ export default class IntersectionObserverArticle extends ImmutablePureComponent
return (
<article
ref={this.handleRef}
aria-posinset={index}
aria-posinset={index + 1}
aria-setsize={listLength}
style={{ height: `${this.height || cachedHeight}px`, opacity: 0, overflow: 'hidden' }}
data-id={id}
@ -119,7 +119,7 @@ export default class IntersectionObserverArticle extends ImmutablePureComponent
}
return (
<article ref={this.handleRef} aria-posinset={index} aria-setsize={listLength} data-id={id} tabIndex='0'>
<article ref={this.handleRef} aria-posinset={index + 1} aria-setsize={listLength} data-id={id} tabIndex='0'>
{children && React.cloneElement(children, { hidden: false })}
</article>
);

Loading…
Cancel
Save