diff options
| author | Andrej Mihajlov <and@mullvad.net> | 2019-10-04 18:15:43 +0200 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2019-10-04 18:15:43 +0200 |
| commit | 09a1f43b727ad4e61af5fc2d2c0e9601f4a40419 (patch) | |
| tree | a6139b230428bb63c339e6162e5b6649301f349c /gui/src | |
| parent | 7f8ae18f6621e83dc3d840d8dfbdac226f434467 (diff) | |
| download | mullvadvpn-09a1f43b727ad4e61af5fc2d2c0e9601f4a40419.tar.xz mullvadvpn-09a1f43b727ad4e61af5fc2d2c0e9601f4a40419.zip | |
Add missing .selected prop
Diffstat (limited to 'gui/src')
| -rw-r--r-- | gui/src/renderer/components/CountryRow.tsx | 3 |
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} |
