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
{{ message }}
This repository has been archived by the owner on Jun 10, 2020. It is now read-only.
I'm using this component to render ListItems containing folders data, so I use this to navigate between folders.
I request data from the server and build my ListItems with the functions handleInfiniteLoad() and buildElements() as examples shows.
All works perfectly except when I navigate in a empty folder...
The handleInfiniteLoad() is called, the buildElements() builds 0 items and ok, then I press "UP" to list previous folder, got data from the server, set the new state, but the list remains empty.
After some investigation I saw that I've to force call to handleInfiniteLoad() after it rendered 0 items to get it working again
I'm not sure if that's a issue btw I wanna report
I'm using this component to render ListItems containing folders data, so I use this to navigate between folders.
I request data from the server and build my ListItems with the functions
handleInfiniteLoad()
andbuildElements()
as examples shows.All works perfectly except when I navigate in a empty folder...
The
handleInfiniteLoad()
is called, thebuildElements()
builds 0 items and ok, then I press "UP" to list previous folder, got data from the server, set the new state, but the list remains empty.After some investigation I saw that I've to force call to
handleInfiniteLoad()
after it rendered 0 items to get it working againThe text was updated successfully, but these errors were encountered: