Skip to content

Commit

Permalink
fix(paginationLink): it's aria-label not ariaLabel (#1125)
Browse files Browse the repository at this point in the history
Fixes a warning message we had

https://facebook.github.io/react/docs/jsx-gotchas.html#custom-html-
attributes

No test added, no tests previously
  • Loading branch information
vvo authored Jul 8, 2016
1 parent 4348463 commit 70a190c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Pagination/PaginationLink.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class PaginationLink extends React.Component {
tagName = 'a';
attributes = {
...attributes,
ariaLabel,
'aria-label': ariaLabel,
href: url,
onClick: this.handleClick
};
Expand Down

0 comments on commit 70a190c

Please sign in to comment.