Skip to content

Commit 27f87ac

Browse files
authored
Merge pull request #104 from wsfe/feat/mobile-scroll-bouncing
feat: prevent white screen when scroll is bouncing on mobile devices
2 parents 6c830f6 + a31a8bf commit 27f87ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hooks/useVirtualList.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export const useVirtualList = (nonReactive: INonReactiveData, props: IUseVirtual
4949
*/
5050
const updateRenderNodes = (isScroll: boolean = false): void => {
5151
if (blockLength.value > renderAmount.value) {
52-
const scrollTop = scrollArea.value.scrollTop
52+
const scrollTop = Math.max(scrollArea.value.scrollTop, 0)
5353
/** 当前滚动了多少节点 */
5454
const scrollNodeAmount = Math.floor(scrollTop / props.nodeMinHeight)
5555
renderStart.value =

0 commit comments

Comments
 (0)