Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMHSanaei <ho3ein.sanaei@gmail.com>2023-03-30 18:03:19 +0300
committerMHSanaei <ho3ein.sanaei@gmail.com>2023-03-30 18:03:19 +0300
commit48d6362a69be900a2ae52be6bdb3a7700420b44d (patch)
tree5e35c988f3012be94daeb333d42a6c75aa9018eb /web/html/xui/form/protocol/shadowsocks.html
parent3f2adbd70a7cf61408c717bd40c215fde80a152b (diff)
shadow socks base64 + new methods
Diffstat (limited to 'web/html/xui/form/protocol/shadowsocks.html')
-rw-r--r--web/html/xui/form/protocol/shadowsocks.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/web/html/xui/form/protocol/shadowsocks.html b/web/html/xui/form/protocol/shadowsocks.html
index 21d614ae..718ba894 100644
--- a/web/html/xui/form/protocol/shadowsocks.html
+++ b/web/html/xui/form/protocol/shadowsocks.html
@@ -1,18 +1,18 @@
{{define "form/shadowsocks"}}
<a-form layout="inline">
<a-form-item label='{{ i18n "encryption" }}'>
- <a-select v-model="inbound.settings.method" style="width: 165px;" :dropdown-class-name="siderDrawer.isDarkTheme ? 'ant-card-dark' : ''">
+ <a-select v-model="inbound.settings.method" style="width: 250px;" :dropdown-class-name="siderDrawer.isDarkTheme ? 'ant-card-dark' : ''">
<a-select-option v-for="method in SSMethods" :value="method">[[ method ]]</a-select-option>
</a-select>
</a-form-item>
<a-form-item label='{{ i18n "password" }}'>
- <a-input v-model.trim="inbound.settings.password"></a-input>
+ <a-input v-model.trim="inbound.settings.password" style="width: 250px;"></a-input>
</a-form-item>
<a-form-item label='{{ i18n "pages.inbounds.network" }}'>
<a-select v-model="inbound.settings.network" style="width: 100px;" :dropdown-class-name="siderDrawer.isDarkTheme ? 'ant-card-dark' : ''">
- <a-select-option value="tcp,udp">tcp+udp</a-select-option>
- <a-select-option value="tcp">tcp</a-select-option>
- <a-select-option value="udp">udp</a-select-option>
+ <a-select-option value="tcp,udp">TCP+UDP</a-select-option>
+ <a-select-option value="tcp">TCP</a-select-option>
+ <a-select-option value="udp">UDP</a-select-option>
</a-select>
</a-form-item>
</a-form>