File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
packages/react-native/ReactAndroid/src
main/java/com/facebook/react/uimanager/style
test/java/com/facebook/react/uimanager Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -143,11 +143,11 @@ internal data class BorderRadiusStyle(
143
143
CornerRadii (it, width, height)
144
144
} ? : zeroRadii,
145
145
bottomLeft =
146
- (endEnd ? : bottomStart ? : bottomRight ? : uniform)?.let {
146
+ (endEnd ? : bottomEnd ? : bottomRight ? : uniform)?.let {
147
147
CornerRadii (it, width, height)
148
148
} ? : zeroRadii,
149
149
bottomRight =
150
- (startEnd ? : bottomEnd ? : bottomLeft ? : uniform)?.let {
150
+ (startEnd ? : bottomStart ? : bottomLeft ? : uniform)?.let {
151
151
CornerRadii (it, width, height)
152
152
} ? : zeroRadii,
153
153
width = width,
Original file line number Diff line number Diff line change @@ -95,13 +95,13 @@ class BorderRadiusStyleTest {
95
95
arrayOf(
96
96
BorderRadiusProp .BORDER_RADIUS ,
97
97
BorderRadiusProp .BORDER_BOTTOM_RIGHT_RADIUS ,
98
- BorderRadiusProp .BORDER_BOTTOM_START_RADIUS ,
98
+ BorderRadiusProp .BORDER_BOTTOM_END_RADIUS ,
99
99
BorderRadiusProp .BORDER_END_END_RADIUS ),
100
100
ComputedBorderRadiusProp .COMPUTED_BORDER_BOTTOM_RIGHT_RADIUS to
101
101
arrayOf(
102
102
BorderRadiusProp .BORDER_RADIUS ,
103
103
BorderRadiusProp .BORDER_BOTTOM_LEFT_RADIUS ,
104
- BorderRadiusProp .BORDER_BOTTOM_END_RADIUS ,
104
+ BorderRadiusProp .BORDER_BOTTOM_START_RADIUS ,
105
105
BorderRadiusProp .BORDER_START_END_RADIUS ),
106
106
)
107
107
You can’t perform that action at this time.
0 commit comments