Fabric: Fixed erratum in "borderRadius" prop name

Summary: Trivial.

Reviewed By: mdvacca

Differential Revision: D8473506

fbshipit-source-id: ce2888edc1052f39a042904c02b3ac347feedbba
This commit is contained in:
Valentin Shergin 2018-06-17 21:35:57 -07:00 committed by Facebook Github Bot
parent dca2067b71
commit c1e0ea9d38
2 changed files with 2 additions and 2 deletions

View File

@ -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)),

View File

@ -41,7 +41,7 @@ public:
// Borders
const EdgeInsets borderWidth {};
const CornerInsets borderRadus {};
const CornerInsets borderRadius {};
const SharedColor borderColor {};
const BorderStyle borderStyle {};