summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2019-10-04 18:15:43 +0200
committerAndrej Mihajlov <and@mullvad.net>2019-10-04 18:15:43 +0200
commit09a1f43b727ad4e61af5fc2d2c0e9601f4a40419 (patch)
treea6139b230428bb63c339e6162e5b6649301f349c
parent7f8ae18f6621e83dc3d840d8dfbdac226f434467 (diff)
downloadmullvadvpn-09a1f43b727ad4e61af5fc2d2c0e9601f4a40419.tar.xz
mullvadvpn-09a1f43b727ad4e61af5fc2d2c0e9601f4a40419.zip
Add missing .selected prop
-rw-r--r--gui/src/renderer/components/CountryRow.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/gui/src/renderer/components/CountryRow.tsx b/gui/src/renderer/components/CountryRow.tsx
index 46f40694c9..026a55343d 100644
--- a/gui/src/renderer/components/CountryRow.tsx
+++ b/gui/src/renderer/components/CountryRow.tsx
@@ -80,7 +80,8 @@ export default class CountryRow extends Component<IProps> {
<Cell.CellButton
style={styles.base}
onPress={this.handlePress}
- disabled={!this.props.hasActiveRelays}>
+ disabled={!this.props.hasActiveRelays}
+ selected={this.props.selected}>
<RelayStatusIndicator
active={this.props.hasActiveRelays}
selected={this.props.selected}