diff options
| author | MHSanaei <ho3ein.sanaei@gmail.com> | 2023-03-30 18:03:19 +0300 |
|---|---|---|
| committer | MHSanaei <ho3ein.sanaei@gmail.com> | 2023-03-30 18:03:19 +0300 |
| commit | 48d6362a69be900a2ae52be6bdb3a7700420b44d (patch) | |
| tree | 5e35c988f3012be94daeb333d42a6c75aa9018eb /web/html/xui/form/protocol/shadowsocks.html | |
| parent | 3f2adbd70a7cf61408c717bd40c215fde80a152b (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.html | 10 |
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> |
