diff options
| author | mhsanaei <ho3ein.sanaei@gmail.com> | 2024-09-16 17:49:00 +0300 |
|---|---|---|
| committer | mhsanaei <ho3ein.sanaei@gmail.com> | 2024-09-16 17:49:00 +0300 |
| commit | 521870df0a12a1f2c2415f3d041fbc1c3b28d308 (patch) | |
| tree | 903f4d3b9eff20edcd61cf7839e11623bc591ae0 | |
| parent | dc1c1eb9988ecd24c3739df1ff4d850856e29c14 (diff) | |
minor changes
| -rw-r--r-- | web/html/xui/form/allocate.html | 6 | ||||
| -rw-r--r-- | web/html/xui/form/sniffing.html | 2 | ||||
| -rw-r--r-- | web/html/xui/inbounds.html | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/web/html/xui/form/allocate.html b/web/html/xui/form/allocate.html index 8c19d3ec..35527c19 100644 --- a/web/html/xui/form/allocate.html +++ b/web/html/xui/form/allocate.html @@ -1,15 +1,15 @@ {{define "form/allocate"}} <a-divider style="margin:5px 0 0;">Allocate</a-divider> <a-form :colon="false" :label-col="{ md: {span:8} }" :wrapper-col="{ md: {span:14} }"> - <a-form-item label='strategy'> + <a-form-item label='Strategy'> <a-select v-model="inbound.allocate.strategy" :dropdown-class-name="themeSwitcher.currentTheme"> <a-select-option v-for="s in ['always','random']" :value="s">[[ s ]]</a-select-option> </a-select> </a-form-item> - <a-form-item label='refresh'> + <a-form-item label='Refresh'> <a-input-number v-model.number="inbound.allocate.refresh" min="0"></a-input-number> </a-form-item> - <a-form-item label='concurrency'> + <a-form-item label='Concurrency'> <a-input-number v-model.number="inbound.allocate.concurrency" min="0"></a-input-number> </a-form-item> </a-form> diff --git a/web/html/xui/form/sniffing.html b/web/html/xui/form/sniffing.html index 23dfea65..df49a97a 100644 --- a/web/html/xui/form/sniffing.html +++ b/web/html/xui/form/sniffing.html @@ -3,7 +3,7 @@ <a-form :colon="false" :label-col="{ md: {span:8} }" :wrapper-col="{ md: {span:14} }"> <a-form-item> <span slot="label"> - Sniffing + {{ i18n "enabled" }} <a-tooltip> <template slot="title"> <span>{{ i18n "pages.inbounds.noRecommendKeepDefault" }}</span> diff --git a/web/html/xui/inbounds.html b/web/html/xui/inbounds.html index e93a0a1d..1aad5d91 100644 --- a/web/html/xui/inbounds.html +++ b/web/html/xui/inbounds.html @@ -733,7 +733,7 @@ this.inbounds.push(to_inbound); this.dbInbounds.push(dbInbound); if ([Protocols.VMESS, Protocols.VLESS, Protocols.TROJAN, Protocols.SHADOWSOCKS].includes(inbound.protocol)) { - if (inbound.protocol === Protocols.SHADOWSOCKS && (!to_inbound.isSSMultiUser)) { + if (dbInbound.isSS && (!to_inbound.isSSMultiUser)) { continue; } this.clientCount[inbound.id] = this.getClientCounts(inbound, to_inbound); |
