diff options
Diffstat (limited to 'web/html/form/protocol')
| -rw-r--r-- | web/html/form/protocol/dokodemo.html | 2 | ||||
| -rw-r--r-- | web/html/form/protocol/hysteria.html | 2 | ||||
| -rw-r--r-- | web/html/form/protocol/shadowsocks.html | 2 | ||||
| -rw-r--r-- | web/html/form/protocol/trojan.html | 2 | ||||
| -rw-r--r-- | web/html/form/protocol/vless.html | 2 | ||||
| -rw-r--r-- | web/html/form/protocol/vmess.html | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/web/html/form/protocol/dokodemo.html b/web/html/form/protocol/dokodemo.html index 4437a3e3..1dbace29 100644 --- a/web/html/form/protocol/dokodemo.html +++ b/web/html/form/protocol/dokodemo.html @@ -32,6 +32,6 @@ </a-form> <!-- sockopt --> <template> - {{template "form/streamSockopt"}} + {{template "form/streamSockopt" .}} </template> {{end}}
\ No newline at end of file diff --git a/web/html/form/protocol/hysteria.html b/web/html/form/protocol/hysteria.html index 557ebb43..5613dfc5 100644 --- a/web/html/form/protocol/hysteria.html +++ b/web/html/form/protocol/hysteria.html @@ -1,7 +1,7 @@ {{define "form/hysteria"}} <a-collapse activeKey="0" v-for="(client, index) in inbound.settings.hysterias.slice(0,1)" v-if="!isEdit"> <a-collapse-panel header='{{ i18n "pages.inbounds.client" }}'> - {{template "form/client"}} + {{template "form/client" .}} </a-collapse-panel> </a-collapse> <a-collapse v-else> diff --git a/web/html/form/protocol/shadowsocks.html b/web/html/form/protocol/shadowsocks.html index 8112222c..12371399 100644 --- a/web/html/form/protocol/shadowsocks.html +++ b/web/html/form/protocol/shadowsocks.html @@ -2,7 +2,7 @@ <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" }}'> - {{template "form/client"}} + {{template "form/client" .}} </a-collapse-panel> </a-collapse> <a-collapse v-else> diff --git a/web/html/form/protocol/trojan.html b/web/html/form/protocol/trojan.html index 4d99ff43..5d36808d 100644 --- a/web/html/form/protocol/trojan.html +++ b/web/html/form/protocol/trojan.html @@ -1,7 +1,7 @@ {{define "form/trojan"}} <a-collapse activeKey="0" v-for="(client, index) in inbound.settings.trojans.slice(0,1)" v-if="!isEdit"> <a-collapse-panel header='{{ i18n "pages.inbounds.client" }}'> - {{template "form/client"}} + {{template "form/client" .}} </a-collapse-panel> </a-collapse> <a-collapse v-else> diff --git a/web/html/form/protocol/vless.html b/web/html/form/protocol/vless.html index 1801026e..f8ee1542 100644 --- a/web/html/form/protocol/vless.html +++ b/web/html/form/protocol/vless.html @@ -1,7 +1,7 @@ {{define "form/vless"}} <a-collapse activeKey="0" v-for="(client, index) in inbound.settings.vlesses.slice(0,1)" v-if="!isEdit"> <a-collapse-panel header='{{ i18n "pages.inbounds.client" }}'> - {{template "form/client"}} + {{template "form/client" .}} </a-collapse-panel> </a-collapse> <a-collapse v-else> diff --git a/web/html/form/protocol/vmess.html b/web/html/form/protocol/vmess.html index 9e13da50..1beb4259 100644 --- a/web/html/form/protocol/vmess.html +++ b/web/html/form/protocol/vmess.html @@ -1,7 +1,7 @@ {{define "form/vmess"}} <a-collapse activeKey="0" v-for="(client, index) in inbound.settings.vmesses.slice(0,1)" v-if="!isEdit"> <a-collapse-panel header='{{ i18n "pages.inbounds.client" }}'> - {{template "form/client"}} + {{template "form/client" .}} </a-collapse-panel> </a-collapse> <a-collapse v-else> |
