We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c59708 commit e5d78abCopy full SHA for e5d78ab
components/Pagination/Pagination.js
@@ -29,7 +29,7 @@ class Pagination extends React.Component {
29
className = cx(bem('item-page', 'active'), this.props.cssClasses.active, className);
30
}
31
32
- var url = createURL ? createURL(pageNumber) : '#';
+ var url = createURL && !isDisabled ? createURL(pageNumber) : '#';
33
34
return (
35
<PaginationLink
0 commit comments