Fix j/k not skipping over display:none items

Hide-filtered posts are display:none-d
This commit is contained in:
Lim Chee Aun 2025-01-25 21:19:43 +08:00
parent b1cad570ad
commit de0da11cc0

View file

@ -149,7 +149,7 @@ function Timeline({
const activeItemRect = activeItem?.getBoundingClientRect();
const allItems = Array.from(
scrollableRef.current.querySelectorAll(itemsSelector),
);
).filter((item) => !!item.offsetHeight);
if (
activeItem &&
activeItemRect.top < scrollableRef.current.clientHeight &&
@ -188,7 +188,7 @@ function Timeline({
const activeItemRect = activeItem?.getBoundingClientRect();
const allItems = Array.from(
scrollableRef.current.querySelectorAll(itemsSelector),
);
).filter((item) => !!item.offsetHeight);
if (
activeItem &&
activeItemRect.top < scrollableRef.current.clientHeight &&