diff options
| author | mhsanaei <ho3ein.sanaei@gmail.com> | 2025-09-08 11:08:55 +0300 |
|---|---|---|
| committer | mhsanaei <ho3ein.sanaei@gmail.com> | 2025-09-08 15:32:49 +0300 |
| commit | 5420e643cf71eb1cb1e14ad224ac88f10e47d58c (patch) | |
| tree | b30b1a01fc1821b4f45ed050365ac4ea236491ce /web/html | |
| parent | 9fcd0387ca7bffe023274a39293d562d4dc2c84b (diff) | |
minor change
Diffstat (limited to 'web/html')
| -rw-r--r-- | web/html/form/protocol/vless.html | 1 | ||||
| -rw-r--r-- | web/html/modals/inbound_modal.html | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/web/html/form/protocol/vless.html b/web/html/form/protocol/vless.html index 6f421731..69e74285 100644 --- a/web/html/form/protocol/vless.html +++ b/web/html/form/protocol/vless.html @@ -22,6 +22,7 @@ <a-form :colon="false" :label-col="{ md: {span:8} }" :wrapper-col="{ md: {span:14} }"> <a-form-item label="Authentication"> <a-select v-model="inbound.settings.selectedAuth" @change="getNewVlessEnc" :dropdown-class-name="themeSwitcher.currentTheme"> + <a-select-option :value="undefined">None</a-select-option> <a-select-option value="X25519, not Post-Quantum">X25519 (not Post-Quantum)</a-select-option> <a-select-option value="ML-KEM-768, Post-Quantum">ML-KEM-768 (Post-Quantum)</a-select-option> </a-select> diff --git a/web/html/modals/inbound_modal.html b/web/html/modals/inbound_modal.html index a7a59c99..60af57cb 100644 --- a/web/html/modals/inbound_modal.html +++ b/web/html/modals/inbound_modal.html @@ -183,7 +183,8 @@ }, clearKeys() { this.inbound.settings.decryption = 'none'; - this.inbound.settings.encryption = ''; + this.inbound.settings.encryption = 'none'; + this.inbound.settings.selectedAuth = undefined; } }, |
