mirror of
https://git.vectorsigma.ru/public/tubearchivist.git
synced 2026-08-04 22:49:31 +00:00
Fix pagination not preving page navigation on arrow key navigation
This commit is contained in:
@@ -37,6 +37,8 @@ const Pagination = ({ pagination, setPage }: Props) => {
|
|||||||
|
|
||||||
const handleKeyEvent = useCallback(
|
const handleKeyEvent = useCallback(
|
||||||
(event: KeyboardEvent) => {
|
(event: KeyboardEvent) => {
|
||||||
|
event.preventDefault();
|
||||||
|
|
||||||
const { code } = event;
|
const { code } = event;
|
||||||
|
|
||||||
if (code === 'ArrowRight') {
|
if (code === 'ArrowRight') {
|
||||||
|
|||||||
Reference in New Issue
Block a user