diff options
| author | Oskar Nyberg <oskar@mullvad.net> | 2022-04-20 10:02:23 +0200 |
|---|---|---|
| committer | Oskar Nyberg <oskar@mullvad.net> | 2022-04-20 10:06:24 +0200 |
| commit | 655a82c0d7a88e4c6b858aacdbdb2b47fee9d78f (patch) | |
| tree | ba11e7ab9305b98895085708aac749aee54970ea /gui | |
| parent | 74641d8900ce1c9590ddc167b2009f0a8060f246 (diff) | |
| download | mullvadvpn-655a82c0d7a88e4c6b858aacdbdb2b47fee9d78f.tar.xz mullvadvpn-655a82c0d7a88e4c6b858aacdbdb2b47fee9d78f.zip | |
Switch country and city row
Diffstat (limited to 'gui')
| -rw-r--r-- | gui/src/renderer/components/TunnelControl.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gui/src/renderer/components/TunnelControl.tsx b/gui/src/renderer/components/TunnelControl.tsx index 0822156445..5adcdee4b1 100644 --- a/gui/src/renderer/components/TunnelControl.tsx +++ b/gui/src/renderer/components/TunnelControl.tsx @@ -103,8 +103,8 @@ export default class TunnelControl extends React.Component<ITunnelControlProps> <Body> <Secured displayStyle={SecuredDisplayStyle.securing} /> <Location> - {this.renderCity()} {this.renderCountry()} + {this.renderCity()} </Location> <ConnectionPanelContainer /> </Body> @@ -120,8 +120,8 @@ export default class TunnelControl extends React.Component<ITunnelControlProps> <Body> <Secured displayStyle={SecuredDisplayStyle.secured} /> <Location> - {this.renderCity()} {this.renderCountry()} + {this.renderCity()} </Location> <ConnectionPanelContainer /> </Body> @@ -168,8 +168,8 @@ export default class TunnelControl extends React.Component<ITunnelControlProps> <Body> <Secured displayStyle={SecuredDisplayStyle.unsecuring} /> <Location> - <LocationRow /> {this.renderCountry()} + <LocationRow /> </Location> </Body> <Footer> @@ -188,8 +188,8 @@ export default class TunnelControl extends React.Component<ITunnelControlProps> <Body> <Secured displayStyle={displayStyle} /> <Location> - <LocationRow /> {this.renderCountry()} + <LocationRow /> </Location> </Body> <Footer> |
