fix(outbound): add None option to uTLS fingerprint in TLS form (#4760)

Hysteria doesn't use uTLS, but the outbound TLS form's uTLS dropdown only listed concrete fingerprints (chrome, firefox, ...) with no explicit empty entry. Add a None option, matching the inbound TLS form, so the fingerprint can be left empty.
This commit is contained in:
MHSanaei
2026-06-01 19:21:37 +02:00
parent 803e010921
commit 6ae1b38607

View File

@@ -20,7 +20,7 @@ export default function TlsForm() {
<Select
allowClear
placeholder={t('none')}
options={UTLS_OPTIONS}
options={[{ value: '', label: t('none') }, ...UTLS_OPTIONS]}
/>
</Form.Item>
<Form.Item