Kaynağa Gözat

Fix off-by-one error in aria-posinset (#8388)

Fix #8191
master
Eugen Rochko 5 yıl önce
committed by GitHub
ebeveyn
işleme
885711afb9
Veri tabanında bu imza için bilinen anahtar bulunamadı GPG Anahtar Kimliği: 4AEE18F83AFDEB23
1 değiştirilmiş dosya ile 2 ekleme ve 2 silme
  1. +2
    -2
      app/javascript/mastodon/components/intersection_observer_article.js

+ 2
- 2
app/javascript/mastodon/components/intersection_observer_article.js Dosyayı Görüntüle

@@ -109,7 +109,7 @@ export default class IntersectionObserverArticle extends React.Component {
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}
@@ -121,7 +121,7 @@ export default class IntersectionObserverArticle extends React.Component {
}

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>
);


Yükleniyor…
İptal
Kaydet