-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Description
It seems like pageSize attribute is being transferred to ul DOM element without .toLowerCase()
In console:
Warning: React does not recognize the
pageSize
prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercasepagesize
instead. If you accidentally passed it from a parent component, remove it from the DOM element.
at ul
at Pagination (http://localhost:3000/static/js/bundle.js:51124:18)
at section
at RecordList (http://localhost:3000/static/js/bundle.js:453:5)
at div
at App (http://localhost:3000/static/js/bundle.js:37:86)
In React component:
{allRecords.length > perPage && (
<Pagination
current={page}
total={allRecords.length}
pageSize={perPage}
onChange={pageOnChangeHandler}
/>
)}`
Metadata
Metadata
Assignees
Labels
No labels