Fabric: Fixed erratum in "borderRadius" prop name
Summary: Trivial. Reviewed By: mdvacca Differential Revision: D8473506 fbshipit-source-id: ce2888edc1052f39a042904c02b3ac347feedbba
This commit is contained in:
parent
dca2067b71
commit
c1e0ea9d38
|
@ -25,7 +25,7 @@ ViewProps::ViewProps(const ViewProps &sourceProps, const RawProps &rawProps):
|
|||
foregroundColor(convertRawProp(rawProps, "foregroundColor", sourceProps.foregroundColor)),
|
||||
backgroundColor(convertRawProp(rawProps, "backgroundColor", sourceProps.backgroundColor)),
|
||||
borderWidth(convertRawProp(rawProps, "borderWidth", sourceProps.borderWidth)),
|
||||
borderRadus(convertRawProp(rawProps, "borderRadus", sourceProps.borderRadus)),
|
||||
borderRadius(convertRawProp(rawProps, "borderRadius", sourceProps.borderRadius)),
|
||||
borderColor(convertRawProp(rawProps, "borderColor", sourceProps.borderColor)),
|
||||
borderStyle(convertRawProp(rawProps, "borderStyle", sourceProps.borderStyle)),
|
||||
shadowColor(convertRawProp(rawProps, "shadowColor", sourceProps.shadowColor)),
|
||||
|
|
|
@ -41,7 +41,7 @@ public:
|
|||
|
||||
// Borders
|
||||
const EdgeInsets borderWidth {};
|
||||
const CornerInsets borderRadus {};
|
||||
const CornerInsets borderRadius {};
|
||||
const SharedColor borderColor {};
|
||||
const BorderStyle borderStyle {};
|
||||
|
||||
|
|
Loading…
Reference in New Issue