Skip to content

Commit b0edd24

Browse files
committed
Noise: Add hex
1 parent f0cfd48 commit b0edd24

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

web/html/xui/form/outbound.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
</a-divider>
6767
<a-form-item label='Type'>
6868
<a-select v-model="noise.type" :dropdown-class-name="themeSwitcher.currentTheme">
69-
<a-select-option v-for="s in ['rand','base64','str']" :value="s">[[ s ]]</a-select-option>
69+
<a-select-option v-for="s in ['rand','base64','str', 'hex']" :value="s">[[ s ]]</a-select-option>
7070
</a-select>
7171
</a-form-item>
7272
<a-form-item label='Packet'>

web/html/xui/settings.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@
377377
<a-col :lg="24" :xl="12">
378378
<a-select :value="noise.type" style="width: 100%" :dropdown-class-name="themeSwitcher.currentTheme"
379379
@change="(value) => updateNoiseType(index, value)">
380-
<a-select-option :value="p" :label="p" v-for="p in ['rand', 'base64', 'str']" :key="p">
380+
<a-select-option :value="p" :label="p" v-for="p in ['rand', 'base64', 'str', 'hex']" :key="p">
381381
[[ p ]] </a-select-option>
382382
</a-select>
383383
</a-col>

0 commit comments

Comments
 (0)