You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix race condition with shouldRecycle=false during fast scroll
When shouldRecycle is false, the previous code path would call
virtualComponents.removeObjects(_componentPool) without properly
handling the DOM, which could cause issues during fast scrolling.
This change simplifies the logic by moving the shouldRecycle check
inside the loop, ensuring components are always properly cleaned up
regardless of the shouldRecycle setting.
Fixes#296
0 commit comments