diff options
| author | MHSanaei <ho3ein.sanaei@gmail.com> | 2023-07-18 02:49:01 +0300 |
|---|---|---|
| committer | MHSanaei <ho3ein.sanaei@gmail.com> | 2023-07-18 02:49:01 +0300 |
| commit | c2e9ee36658a8549251df7fb37467baa55341a5f (patch) | |
| tree | 25baf2f09f566d9aba8cae93274612af0cd5d750 /web/html/xui/form | |
| parent | 1f78842b707a1190b6a84aded269d664254a7f1d (diff) | |
update - shadowsocks
Co-Authored-By: Alireza Ahmadi <alireza7@gmail.com>
Diffstat (limited to 'web/html/xui/form')
| -rw-r--r-- | web/html/xui/form/protocol/shadowsocks.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/web/html/xui/form/protocol/shadowsocks.html b/web/html/xui/form/protocol/shadowsocks.html index 7af96373..8e16b143 100644 --- a/web/html/xui/form/protocol/shadowsocks.html +++ b/web/html/xui/form/protocol/shadowsocks.html @@ -1,5 +1,6 @@ {{define "form/shadowsocks"}} <a-form layout="inline" style="padding: 10px 0px;"> + <template v-if="inbound.isSSMultiUser"> <a-collapse activeKey="0" v-for="(client, index) in inbound.settings.shadowsockses.slice(0,1)" v-if="!isEdit"> <a-collapse-panel header='{{ i18n "pages.inbounds.client" }}'> <a-form-item> @@ -106,10 +107,11 @@ </table> </a-collapse-panel> </a-collapse> +</template> </a-form> <a-form layout="inline"> <a-form-item label='{{ i18n "encryption" }}'> - <a-select v-model="inbound.settings.method" style="width: 250px;" :dropdown-class-name="themeSwitcher.darkCardClass"> + <a-select v-model="inbound.settings.method" style="width: 250px;" :dropdown-class-name="themeSwitcher.darkCardClass" @change="SSMethodChange"> <a-select-option v-for="method in SSMethods" :value="method">[[ method ]]</a-select-option> </a-select> </a-form-item> |
