Skip to content

Commit e774bd0

Browse files
committed
fix(empty gaps): prevent empty gaps on fast scrolling, fix (Akryum#863, Akryum#882) (fix lint)
1 parent fd8e5a3 commit e774bd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/vue-virtual-scroller/src/components/RecycleScroller.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -766,7 +766,7 @@ export default {
766766
sortViews () {
767767
this.pool.sort((viewA, viewB) => viewA.nr.index - viewB.nr.index)
768768
769-
if(this.isAnyVisibleGap()) {
769+
if (this.isAnyVisibleGap(false)) {
770770
this.updateVisibleItems()
771771
clearTimeout(this.$_sortTimer)
772772
}

0 commit comments

Comments
 (0)