Allow to scroll partial images in slider

This commit is contained in:
enter-a-random-username
2025-03-28 19:00:34 +01:00
committed by Bill Thornton
parent 4410631564
commit 038574adfc

View File

@@ -76,7 +76,7 @@ function scrollToWindow({
let scrollToPosition: number;
if (direction === ScrollDirection.RIGHT) {
const nextItem = items[lastVisibleIndex];
const nextItem = items[lastVisibleIndex] ? items[lastVisibleIndex] : items[lastVisibleIndex - 1];
// This will be the position to anchor the item at `lastVisibleIndex` to the start of the view window.
const nextItemScrollOffset = lastVisibleIndex * nextItem.offsetWidth;