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
Current implementation of MergeRecursive function works incorrectly when loading a new page with header that already exists, new data completely overwrites old.
Consider the following example:
so to get this feature work correctly we need either prefetch all pages before current too, which
is totally inefficient of course or to merge new data with old before passing it to the callback
which is not so convenient.
The text was updated successfully, but these errors were encountered:
Oxyaction
added a commit
to Oxyaction/react-native-gifted-listview
that referenced
this issue
Apr 7, 2017
Current implementation of
MergeRecursive
function works incorrectly when loading a new page with header that already exists, new data completely overwrites old.Consider the following example:
gives
instead of expected
so to get this feature work correctly we need either prefetch all pages before current too, which
is totally inefficient of course or to merge new data with old before passing it to the
callback
which is not so convenient.
The text was updated successfully, but these errors were encountered: