summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTobias Järvelöv <tobias.jarvelov@mullvad.net>2025-09-01 14:41:46 +0200
committerTobias Järvelöv <tobias.jarvelov@mullvad.net>2025-09-30 09:51:49 +0200
commitfa0516a9aaf40741c6c31c12163f2c09fc149f9f (patch)
tree2cc7dd6ccf68f342d3fdd3fd72f519b2d80e26ef
parent1e1a91036a2b1ef92e75a236c728918ab2ab1911 (diff)
downloadmullvadvpn-fa0516a9aaf40741c6c31c12163f2c09fc149f9f.tar.xz
mullvadvpn-fa0516a9aaf40741c6c31c12163f2c09fc149f9f.zip
Wrap proxy type select in SettingsGroup
This is required now that the name field is wrapped inside a SettingsGroup, otherwise the elements will not have the correct spacing between them.
-rw-r--r--desktop/packages/mullvad-vpn/src/renderer/components/ProxyForm.tsx8
1 files changed, 5 insertions, 3 deletions
diff --git a/desktop/packages/mullvad-vpn/src/renderer/components/ProxyForm.tsx b/desktop/packages/mullvad-vpn/src/renderer/components/ProxyForm.tsx
index 90bf001fa5..cdf8cdddf0 100644
--- a/desktop/packages/mullvad-vpn/src/renderer/components/ProxyForm.tsx
+++ b/desktop/packages/mullvad-vpn/src/renderer/components/ProxyForm.tsx
@@ -216,9 +216,11 @@ function ProxyFormInner() {
return (
<>
- <SettingsRow label={messages.gettext('Type')}>
- <SettingsSelect defaultValue={type} onUpdate={setType} items={types} />
- </SettingsRow>
+ <SettingsGroup>
+ <SettingsRow label={messages.gettext('Type')}>
+ <SettingsSelect defaultValue={type} onUpdate={setType} items={types} />
+ </SettingsRow>
+ </SettingsGroup>
{type === 'shadowsocks' && (
<EditShadowsocks