diff --git a/packages/core/lib/components/Pagination.tsx b/packages/core/lib/components/Pagination.tsx index 9bb65ad..03bdaa9 100644 --- a/packages/core/lib/components/Pagination.tsx +++ b/packages/core/lib/components/Pagination.tsx @@ -184,6 +184,14 @@ export const Pagination: React.FC = ({ ); + const inputPageNumber = (e: React.KeyboardEvent) => { + if (e.key === ' ' || e.key === 'Enter') { + e.preventDefault(); + onPageChange(inputPage); + return; + } + }; + return (