Skip to content

Commit 59f21f1

Browse files
sebmarkbagegaearon
authored andcommitted
HostText needs to copy over from current if it is unchanged in persistent mode (#17538)
stateNode is not one of the fields that gets copied over by createWorkInProgress. This is bad for persistent mode since it's not the same instance. In HostComponent we happened to always end up transferring the current stateNode when we bail. However, we didn't do this for HostText.
1 parent 7e2ab87 commit 59f21f1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packages/react-reconciler/src/ReactFiberCompleteWork.js

+2
Original file line numberDiff line numberDiff line change
@@ -539,6 +539,8 @@ if (supportsMutation) {
539539
// We'll have to mark it as having an effect, even though we won't use the effect for anything.
540540
// This lets the parents know that at least one of their children has changed.
541541
markUpdate(workInProgress);
542+
} else {
543+
workInProgress.stateNode = current.stateNode;
542544
}
543545
};
544546
} else {

0 commit comments

Comments
 (0)