diff options
| author | MHSanaei <ho3ein.sanaei@gmail.com> | 2023-08-26 15:15:53 +0300 |
|---|---|---|
| committer | MHSanaei <ho3ein.sanaei@gmail.com> | 2023-08-26 15:15:53 +0300 |
| commit | 872974910cc2ba7b736b2a78229eaed8ab9e62b3 (patch) | |
| tree | 0e9b9973e2c3a2f72c78570a4896e1e8a9d59322 /web/html/xui | |
| parent | 147999dd88766a30e9475b0f1d347895bbde61c6 (diff) | |
Show ALPN order
Co-Authored-By: Alireza Ahmadi <alireza7@gmail.com>
Diffstat (limited to 'web/html/xui')
| -rw-r--r-- | web/html/xui/form/tls_settings.html | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/web/html/xui/form/tls_settings.html b/web/html/xui/form/tls_settings.html index 227c5466..28f61916 100644 --- a/web/html/xui/form/tls_settings.html +++ b/web/html/xui/form/tls_settings.html @@ -80,9 +80,13 @@ </a-select> </a-form-item> <a-form-item label="Alpn"> - <a-checkbox-group v-model="inbound.stream.tls.alpn" style="width:200px"> - <a-checkbox v-for="key,value in ALPN_OPTION" :value="key">[[ value ]]</a-checkbox> - </a-checkbox-group> + <a-select + mode="multiple" + style="width: 250px" + :dropdown-class-name="themeSwitcher.darkCardClass" + v-model="inbound.stream.tls.alpn"> + <a-select-option v-for="alpn in ALPN_OPTION" :value="alpn">[[ alpn ]]</a-select-option> + </a-select> </a-form-item> <br> <a-form-item label="Allow insecure"> |
