diff options
| author | shahin-io <115543613+shahin-io@users.noreply.github.com> | 2024-01-09 12:10:40 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-09 12:10:40 +0300 |
| commit | 984b469c6feffa6d3523ab5e2caf44fe847c5af7 (patch) | |
| tree | f5f5b714bcb596194cfe85350edd659864b9812f /web/html/xui/form/protocol | |
| parent | 96c4cfeb235339bedd8665f0226f0f7f7e8b83ed (diff) | |
Overall Enhancement (#1524)
Diffstat (limited to 'web/html/xui/form/protocol')
| -rw-r--r-- | web/html/xui/form/protocol/shadowsocks.html | 2 | ||||
| -rw-r--r-- | web/html/xui/form/protocol/trojan.html | 2 | ||||
| -rw-r--r-- | web/html/xui/form/protocol/vless.html | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/web/html/xui/form/protocol/shadowsocks.html b/web/html/xui/form/protocol/shadowsocks.html index 79281614..baed82e0 100644 --- a/web/html/xui/form/protocol/shadowsocks.html +++ b/web/html/xui/form/protocol/shadowsocks.html @@ -23,7 +23,7 @@ <a-form :colon="false" :label-col="{ md: {span:6} }" :wrapper-col="{ md: {span:14} }"> <a-form-item label='{{ i18n "encryption" }}'> <a-select v-model="inbound.settings.method" @change="SSMethodChange" :dropdown-class-name="themeSwitcher.currentTheme"> - <a-select-option v-for="method in SSMethods" :value="method">[[ method ]]</a-select-option> + <a-select-option v-for="(method,method_name) in SSMethods" :value="method">[[ method_name ]]</a-select-option> </a-select> </a-form-item> <a-form-item v-if="inbound.isSS2022"> diff --git a/web/html/xui/form/protocol/trojan.html b/web/html/xui/form/protocol/trojan.html index 5a7ba3c4..3f1d830b 100644 --- a/web/html/xui/form/protocol/trojan.html +++ b/web/html/xui/form/protocol/trojan.html @@ -37,7 +37,7 @@ <a-icon type="delete" @click="() => inbound.settings.delFallback(index)" style="color: rgb(255, 77, 79);cursor: pointer;"/> </a-divider> - <a-form-item label='Name'> + <a-form-item label='SNI'> <a-input v-model="fallback.name"></a-input> </a-form-item> <a-form-item label='ALPN'> diff --git a/web/html/xui/form/protocol/vless.html b/web/html/xui/form/protocol/vless.html index 7c18c048..73859ad5 100644 --- a/web/html/xui/form/protocol/vless.html +++ b/web/html/xui/form/protocol/vless.html @@ -39,7 +39,7 @@ <a-icon type="delete" @click="() => inbound.settings.delFallback(index)" style="color: rgb(255, 77, 79);cursor: pointer;"/> </a-divider> - <a-form-item label='Name'> + <a-form-item label='SNI'> <a-input v-model="fallback.name"></a-input> </a-form-item> <a-form-item label='ALPN'> |
