mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-05-10 09:29:39 +08:00
Fabric: Fixed a bug in ShadowViewMutation constructor
Summary: Clowntown. This fixes a recent regression happened becasuse wrong order of parameters in ShadowViewMutation constructor. Reviewed By: JoshuaGross Differential Revision: D14329164 fbshipit-source-id: 5a0dc04b889fb3357050b951d56c3e436dbeefb1
This commit is contained in:
committed by
Facebook Github Bot
parent
d48bd1759e
commit
393bf8aaad
@@ -14,8 +14,8 @@ ShadowViewMutation ShadowViewMutation::CreateMutation(ShadowView shadowView) {
|
||||
return {
|
||||
/* .type = */ Create,
|
||||
/* .parentShadowView = */ {},
|
||||
/* .newChildShadowView = */ shadowView,
|
||||
/* .oldChildShadowView = */ {},
|
||||
/* .newChildShadowView = */ shadowView,
|
||||
/* .index = */ -1,
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user