diff options
Diffstat (limited to 'web/html/xui/form')
| -rw-r--r-- | web/html/xui/form/client.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/html/xui/form/client.html b/web/html/xui/form/client.html index 204aca72..f4ac25f3 100644 --- a/web/html/xui/form/client.html +++ b/web/html/xui/form/client.html @@ -15,7 +15,7 @@ </template> <a-input v-model.trim="client.email"></a-input> </a-form-item> - <a-form-item v-if="inbound.protocol === Protocols.TROJAN || inbound.protocol === Protocols.SHADOWSOCKS"> + <a-form-item v-if="(inbound.protocol === Protocols.TROJAN || inbound.protocol === Protocols.SHADOWSOCKS) && !isGroup"> <template slot="label"> <a-tooltip> <template slot="title"> @@ -28,7 +28,7 @@ </template> <a-input v-model.trim="client.password"></a-input> </a-form-item> - <a-form-item v-if="inbound.protocol === Protocols.VMESS || inbound.protocol === Protocols.VLESS"> + <a-form-item v-if="(inbound.protocol === Protocols.VMESS || inbound.protocol === Protocols.VLESS) && !isGroup"> <template slot="label"> <a-tooltip> <template slot="title"> |
