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
path: root/web
diff options
context:
space:
mode:
authormhsanaei <ho3ein.sanaei@gmail.com>2025-03-05 15:22:07 +0300
committermhsanaei <ho3ein.sanaei@gmail.com>2025-03-05 15:22:07 +0300
commitb0edd24c52e493e4f8ce1025791086d05e986832 (patch)
treeadc2eb49f53940efa1d537b541afe07a918a6bd9 /web
parentf0cfd48f664d822fb42698d28d68657e7c28d50e (diff)
Noise: Add hex
Diffstat (limited to 'web')
-rw-r--r--web/html/xui/form/outbound.html2
-rw-r--r--web/html/xui/settings.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/web/html/xui/form/outbound.html b/web/html/xui/form/outbound.html
index 1cea3ce7..d4e9e5f6 100644
--- a/web/html/xui/form/outbound.html
+++ b/web/html/xui/form/outbound.html
@@ -66,7 +66,7 @@
</a-divider>
<a-form-item label='Type'>
<a-select v-model="noise.type" :dropdown-class-name="themeSwitcher.currentTheme">
- <a-select-option v-for="s in ['rand','base64','str']" :value="s">[[ s ]]</a-select-option>
+ <a-select-option v-for="s in ['rand','base64','str', 'hex']" :value="s">[[ s ]]</a-select-option>
</a-select>
</a-form-item>
<a-form-item label='Packet'>
diff --git a/web/html/xui/settings.html b/web/html/xui/settings.html
index 4522b902..923a040c 100644
--- a/web/html/xui/settings.html
+++ b/web/html/xui/settings.html
@@ -377,7 +377,7 @@
<a-col :lg="24" :xl="12">
<a-select :value="noise.type" style="width: 100%" :dropdown-class-name="themeSwitcher.currentTheme"
@change="(value) => updateNoiseType(index, value)">
- <a-select-option :value="p" :label="p" v-for="p in ['rand', 'base64', 'str']" :key="p">
+ <a-select-option :value="p" :label="p" v-for="p in ['rand', 'base64', 'str', 'hex']" :key="p">
[[ p ]] </a-select-option>
</a-select>
</a-col>