diff options
| author | anderklander <anderklander@gmail.com> | 2018-04-12 09:41:13 +0200 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2018-04-16 12:01:12 +0200 |
| commit | 7f485b287d9a501e7de11d470d68f1e698ff10c2 (patch) | |
| tree | 81767a79b7d47f813da5ef2edcff150a243b3416 /app/components/Support.js | |
| parent | c9f2ec62790a62e674b1252a6a18dec451d17bf3 (diff) | |
| download | mullvadvpn-7f485b287d9a501e7de11d470d68f1e698ff10c2.tar.xz mullvadvpn-7f485b287d9a501e7de11d470d68f1e698ff10c2.zip | |
JS fixes for react-native
Diffstat (limited to 'app/components/Support.js')
| -rw-r--r-- | app/components/Support.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/components/Support.js b/app/components/Support.js index 9b37f85f4e..702750ade1 100644 --- a/app/components/Support.js +++ b/app/components/Support.js @@ -201,7 +201,7 @@ export default class Support extends Component<SupportProps, SupportState> { onPress={ this.onViewLog } testName='support__view_logs'> <Label>View app logs</Label> - <Img source='icon-extLink' height='16' width='16' /> + <Img source='icon-extLink' height={16} width={16} /> </BlueButton>, <GreenButton key={2} disabled={ !this.validate() } @@ -217,7 +217,7 @@ export default class Support extends Component<SupportProps, SupportState> { <View style={styles.support__form}> <View style={styles.support__form_row}> <View style={styles.support__status_icon}> - <Img source="icon-spinner" alt="" /> + <Img source="icon-spinner" height={60} width={60} alt="" /> </View> <View style={styles.support__status_security__secure}> Secure Connection @@ -235,7 +235,7 @@ export default class Support extends Component<SupportProps, SupportState> { <View style={styles.support__form}> <View style={styles.support__form_row}> <View style={styles.support__status_icon}> - <Img source="icon-success" alt="" /> + <Img source="icon-success" height={60} width={60} alt="" /> </View> <Text style={styles.support__status_security__secure}> Secure Connection @@ -262,7 +262,7 @@ export default class Support extends Component<SupportProps, SupportState> { <View style={styles.support__form}> <View style={styles.support__form_row}> <View style={styles.support__status_icon}> - <Img source="icon-fail" alt="" /> + <Img source="icon-fail" height={60} width={60} alt="" /> </View> <Text style={styles.support__status_security__secure}> Secure Connection |
