Skip to content

Commit

Permalink
Merge branch 'master' into 6383-update-downshift
Browse files Browse the repository at this point in the history
  • Loading branch information
Alessandra Davila authored Jul 13, 2020
2 parents 72fe88e + 2692813 commit 83d3ef8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/react/src/components/MultiSelect/MultiSelect.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,6 @@ function MultiSelect({
.length > 0;
return (
<ListBox.MenuItem
aria-selected={isChecked}
key={itemProps.id}
isActive={isChecked}
isHighlighted={highlightedIndex === index}
Expand Down
2 changes: 2 additions & 0 deletions packages/react/src/components/PaginationNav/PaginationNav.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ function PaginationItem({
[`${prefix}--pagination-nav__page--active`]: isActive,
})}
onClick={onClick}
data-page={page}
aria-current={isActive ? 'page' : null}>
<span className={`${prefix}--pagination-nav__accessibility-label`}>
{isActive
Expand Down Expand Up @@ -139,6 +140,7 @@ function PaginationOverflow({
{[...Array(count)].map((e, i) => (
<option
value={(fromIndex + i).toString()}
data-page={fromIndex + i + 1}
key={`overflow-${fromIndex + i}`}>
{fromIndex + i + 1}
</option>
Expand Down

0 comments on commit 83d3ef8

Please sign in to comment.