Skip to content

Commit

Permalink
Merge pull request #52675 from bernhardoj/fix/51658-lhn-only-shows-1-…
Browse files Browse the repository at this point in the history
…chat-after-create-new-ws-from-fab

Fix lhn list only shows 1 item when going back after create new ws from FAB
  • Loading branch information
grgia authored Nov 19, 2024
2 parents 1f91794 + 58e05e2 commit 14ca237
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions patches/recyclerlistview+4.2.1.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
diff --git a/node_modules/recyclerlistview/dist/reactnative/core/RecyclerListView.js b/node_modules/recyclerlistview/dist/reactnative/core/RecyclerListView.js
index 3ca4550..753c2f7 100644
--- a/node_modules/recyclerlistview/dist/reactnative/core/RecyclerListView.js
+++ b/node_modules/recyclerlistview/dist/reactnative/core/RecyclerListView.js
@@ -251,6 +251,7 @@ var RecyclerListView = /** @class */ (function (_super) {
this._virtualRenderer.setOptimizeForAnimations(false);
};
RecyclerListView.prototype.componentDidMount = function () {
+ this._isMounted = true;
if (this._initComplete) {
this._processInitialOffset();
this._processOnEndReached();

0 comments on commit 14ca237

Please sign in to comment.