Skip to content

Commit 120eb92

Browse files
dam1r89Akryum
andauthored
fix: Avoid updatingVisibleItems loop (#392)
* fix: Avoid updatingVisibleItems loop * refactor: use correct continuous value Co-authored-by: Guillaume Chau <[email protected]>
1 parent 77a9f65 commit 120eb92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/RecycleScroller.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ export default {
306306
if (positionDiff < 0) positionDiff = -positionDiff
307307
if ((itemSize === null && positionDiff < minItemSize) || positionDiff < itemSize) {
308308
return {
309-
continuous: false,
309+
continuous: true,
310310
}
311311
}
312312
}

0 commit comments

Comments
 (0)