diff options
Diffstat (limited to 'web/html/form/inbound.html')
| -rw-r--r-- | web/html/form/inbound.html | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/web/html/form/inbound.html b/web/html/form/inbound.html index 736a1fd4..61d7bc57 100644 --- a/web/html/form/inbound.html +++ b/web/html/form/inbound.html @@ -102,69 +102,69 @@ <!-- vmess settings --> <template v-if="inbound.protocol === Protocols.VMESS"> - {{template "form/vmess"}} + {{template "form/vmess" .}} </template> <!-- vless settings --> <template v-if="inbound.protocol === Protocols.VLESS"> - {{template "form/vless"}} + {{template "form/vless" .}} </template> <!-- trojan settings --> <template v-if="inbound.protocol === Protocols.TROJAN"> - {{template "form/trojan"}} + {{template "form/trojan" .}} </template> <!-- shadowsocks --> <template v-if="inbound.protocol === Protocols.SHADOWSOCKS"> - {{template "form/shadowsocks"}} + {{template "form/shadowsocks" .}} </template> <!-- tunnel --> <template v-if="inbound.protocol === Protocols.TUNNEL"> - {{template "form/tunnel"}} + {{template "form/tunnel" .}} </template> <!-- mixed --> <template v-if="inbound.protocol === Protocols.MIXED"> - {{template "form/mixed"}} + {{template "form/mixed" .}} </template> <!-- http --> <template v-if="inbound.protocol === Protocols.HTTP"> - {{template "form/http"}} + {{template "form/http" .}} </template> <!-- wireguard --> <template v-if="inbound.protocol === Protocols.WIREGUARD"> - {{template "form/wireguard"}} + {{template "form/wireguard" .}} </template> <!-- tun --> <template v-if="inbound.protocol === Protocols.TUN"> - {{template "form/tun"}} + {{template "form/tun" .}} </template> <!-- hysteria --> <template v-if="inbound.protocol === Protocols.HYSTERIA"> - {{template "form/hysteria"}} + {{template "form/hysteria" .}} </template> <!-- stream settings --> <template v-if="inbound.canEnableStream()"> - {{template "form/streamSettings"}} - {{template "form/externalProxy" }} + {{template "form/streamSettings" .}} + {{template "form/externalProxy" .}} </template> <!-- tls settings --> <template v-if="inbound.canEnableTls()"> - {{template "form/tlsSettings"}} + {{template "form/tlsSettings" .}} </template> <!-- sniffing --> <a-collapse> <a-collapse-panel header='Sniffing'> - {{template "form/sniffing"}} + {{template "form/sniffing" .}} </a-collapse-panel> </a-collapse> |
