diff options
| author | MHSanaei <ho3ein.sanaei@gmail.com> | 2023-03-17 19:07:49 +0300 |
|---|---|---|
| committer | MHSanaei <ho3ein.sanaei@gmail.com> | 2023-03-17 19:07:49 +0300 |
| commit | 96786c94189f3d2f3f04c1915529c786228bdf42 (patch) | |
| tree | 879085e09a3cd485f3246f46be907fe77eb84a1a /web/html/xui/form/tls_settings.html | |
| parent | bc56e637376142c370c31b17558fc3778a863bd2 (diff) | |
alireza
Diffstat (limited to 'web/html/xui/form/tls_settings.html')
| -rw-r--r-- | web/html/xui/form/tls_settings.html | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/web/html/xui/form/tls_settings.html b/web/html/xui/form/tls_settings.html index 532850c7..aa9c6c6d 100644 --- a/web/html/xui/form/tls_settings.html +++ b/web/html/xui/form/tls_settings.html @@ -11,7 +11,7 @@ </a-form> <!-- tls settings --> -<a-form v-if="inbound.tls || inbound.XTLS"layout="inline"> +<a-form v-if="inbound.tls || inbound.XTLS" layout="inline"> <a-form-item label="SNI" placeholder="Server Name Indication" v-if="inbound.tls"> <a-input v-model.trim="inbound.stream.tls.settings[0].serverName"></a-input> </a-form-item> @@ -22,25 +22,25 @@ </a-select> </a-form-item> <a-form-item label="MinVersion"> - <a-select v-model="inbound.stream.tls.minVersion" style="width: 60px"> + <a-select v-model="inbound.stream.tls.minVersion" style="width: 60px" :dropdown-class-name="siderDrawer.isDarkTheme ? 'ant-card-dark' : ''"> <a-select-option v-for="key in TLS_VERSION_OPTION" :value="key">[[ key ]]</a-select-option> </a-select> </a-form-item> <a-form-item label="MaxVersion"> - <a-select v-model="inbound.stream.tls.maxVersion" style="width: 60px"> + <a-select v-model="inbound.stream.tls.maxVersion" style="width: 60px" :dropdown-class-name="siderDrawer.isDarkTheme ? 'ant-card-dark' : ''"> <a-select-option v-for="key in TLS_VERSION_OPTION" :value="key">[[ key ]]</a-select-option> </a-select> </a-form-item> - <a-form-item label="uTLS" v-if="inbound.tls" > - <a-select v-model="inbound.stream.tls.settings[0].fingerprint" style="width: 135px"> - <a-select-option value=''>None</a-select-option> - <a-select-option v-for="key in UTLS_FINGERPRINT" :value="key">[[ key ]]</a-select-option> - </a-select> - </a-form-item> + <a-form-item label="uTLS" v-if="inbound.tls" > + <a-select v-model="inbound.stream.tls.settings[0].fingerprint" style="width: 135px"> + <a-select-option value=''>None</a-select-option> + <a-select-option v-for="key in UTLS_FINGERPRINT" :value="key">[[ key ]]</a-select-option> + </a-select> + </a-form-item> <a-form-item label='{{ i18n "domainName" }}'> <a-input v-model.trim="inbound.stream.tls.server"></a-input> </a-form-item> - <a-form-item label="Alpn" placeholder="http/1.1,h2" v-if="inbound.tls"> + <a-form-item label="Alpn" v-if="inbound.tls"> <a-select v-model="inbound.stream.tls.alpn[0]" style="width:200px"> <a-select-option value=''>auto</a-select-option> <a-select-option v-for="key in ALPN_OPTION" :value="key">[[ key ]]</a-select-option> |
