diff options
| author | anderklander <anderklander@gmail.com> | 2018-02-14 20:54:22 +0100 |
|---|---|---|
| committer | anderklander <anderklander@gmail.com> | 2018-02-15 16:02:02 +0100 |
| commit | 039724937397ca312c0ce449833dac2cfcb5fb75 (patch) | |
| tree | f0a5257f799e7bc7a82bcab45c1b24a2716e7862 /app/components/styled | |
| parent | 21c5d2fdfef9f49203f90b4f3b8451132e0773bc (diff) | |
| download | mullvadvpn-039724937397ca312c0ce449833dac2cfcb5fb75.tar.xz mullvadvpn-039724937397ca312c0ce449833dac2cfcb5fb75.zip | |
Missed one color->style rename
Diffstat (limited to 'app/components/styled')
| -rw-r--r-- | app/components/styled/AppButton.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/components/styled/AppButton.js b/app/components/styled/AppButton.js index 4d69075042..53fe5561e7 100644 --- a/app/components/styled/AppButton.js +++ b/app/components/styled/AppButton.js @@ -75,9 +75,9 @@ const styles = { export class Label extends Component { render() { - const color = this.props.color || styles.white; + const style = this.props.style || styles.white; return ( - <Text style={[ styles.label, color ]}> + <Text style={[ styles.label, style ]}> {this.props.children} </Text> ); |
