Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pagination selector cannot be controlled with the keyboard #622 #721

Merged
merged 2 commits into from
Jun 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/shared/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ const Table = ({

{/* Selection of page size */}
<div id="tbl-view-controls-container">
<div
<button
className="drop-down-container small flipped"
onClick={() => setShowPageSizes(!showPageSizes)}
// @ts-expect-error TS(2322): Type 'RefObject<unknown>' is not assignable to typ... Remove this comment to see the full error message
Expand All @@ -331,7 +331,7 @@ const Table = ({
))}
</ul>
)}
</div>
</button>

{/* Pagination and navigation trough pages */}
<div className="pagination">
Expand Down
Loading