diff options
| author | Tobias Järvelöv <tobias.jarvelov@mullvad.net> | 2025-09-01 14:41:46 +0200 |
|---|---|---|
| committer | Tobias Järvelöv <tobias.jarvelov@mullvad.net> | 2025-09-30 09:51:49 +0200 |
| commit | fa0516a9aaf40741c6c31c12163f2c09fc149f9f (patch) | |
| tree | 2cc7dd6ccf68f342d3fdd3fd72f519b2d80e26ef | |
| parent | 1e1a91036a2b1ef92e75a236c728918ab2ab1911 (diff) | |
| download | mullvadvpn-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.tsx | 8 |
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 |
