Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMHSanaei <mc.sanaei@gmail.com>2023-02-12 17:24:02 +0300
committerMHSanaei <mc.sanaei@gmail.com>2023-02-12 17:24:02 +0300
commitef656f7c3e585c846589d68e66cff301c94e048b (patch)
tree5b948ac830c14f36df7f10f96908b7464d796509 /web/html/xui
parent6d28c39ae845cb0ac6e35562aaa52d8219b95bc8 (diff)
stupid mistake
Diffstat (limited to 'web/html/xui')
-rw-r--r--web/html/xui/form/stream/stream_tcp.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/web/html/xui/form/stream/stream_tcp.html b/web/html/xui/form/stream/stream_tcp.html
index b03b3015..32495a80 100644
--- a/web/html/xui/form/stream/stream_tcp.html
+++ b/web/html/xui/form/stream/stream_tcp.html
@@ -6,14 +6,14 @@
</a-form-item>
<a-form-item label="HTTP Camouflage">
<a-switch
- :checked="inbound.stream.tcp.type === 'HTTP'"
- @change="checked => inbound.stream.tcp.type = checked ? 'HTTP' : 'none'">
+ :checked="inbound.stream.tcp.type === 'http'"
+ @change="checked => inbound.stream.tcp.type = checked ? 'http' : 'none'">
</a-switch>
</a-form-item>
</a-form>
<!-- tcp request -->
-<a-form v-if="inbound.stream.tcp.type === 'HTTP'"
+<a-form v-if="inbound.stream.tcp.type === 'http'"
layout="inline">
<a-form-item label='{{ i18n "pages.inbounds.stream.tcp.requestVersion" }}'>
<a-input v-model.trim="inbound.stream.tcp.request.version"></a-input>
@@ -50,7 +50,7 @@
</a-form>
<!-- tcp response -->
-<a-form v-if="inbound.stream.tcp.type === 'HTTP'"
+<a-form v-if="inbound.stream.tcp.type === 'http'"
layout="inline">
<a-form-item label='{{ i18n "pages.inbounds.stream.tcp.responseVersion" }}'>
<a-input v-model.trim="inbound.stream.tcp.response.version"></a-input>