File tree 2 files changed +4
-4
lines changed 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ const propTypes = {
51
51
] ) ,
52
52
53
53
/** Additional button styles. Specific to the OpacityView of button */
54
- buttonStyles : PropTypes . arrayOf ( PropTypes . object ) ,
54
+ innerStyles : PropTypes . arrayOf ( PropTypes . object ) ,
55
55
56
56
/** Additional text styles */
57
57
textStyles : PropTypes . arrayOf ( PropTypes . object ) ,
@@ -85,7 +85,7 @@ const defaultProps = {
85
85
onPressOut : ( ) => { } ,
86
86
pressOnEnter : false ,
87
87
style : [ ] ,
88
- buttonStyles : [ ] ,
88
+ innerStyles : [ ] ,
89
89
textStyles : [ ] ,
90
90
success : false ,
91
91
danger : false ,
@@ -199,7 +199,7 @@ class Button extends Component {
199
199
( this . props . danger && hovered ) ? styles . buttonDangerHovered : undefined ,
200
200
this . props . shouldRemoveRightBorderRadius ? styles . noRightBorderRadius : undefined ,
201
201
this . props . shouldRemoveLeftBorderRadius ? styles . noLeftBorderRadius : undefined ,
202
- ...this . props . buttonStyles ,
202
+ ...this . props . innerStyles ,
203
203
] }
204
204
>
205
205
{ this . renderContent ( ) }
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ class ReportSettingsPage extends Component {
146
146
} }
147
147
style = { [ styles . ml2 ] }
148
148
textStyles = { [ styles . label ] }
149
- buttonStyles = { [ styles . reportSettingsChangeNameButton ] }
149
+ innerStyles = { [ styles . reportSettingsChangeNameButton ] }
150
150
isDisabled = { Boolean (
151
151
shouldDisableRename
152
152
|| this . state . newRoomName === this . props . report . reportName
You can’t perform that action at this time.
0 commit comments