Browse Source

Noise: Add hex

mhsanaei 4 weeks ago
parent
commit
b0edd24c52
2 changed files with 2 additions and 2 deletions
  1. 1 1
      web/html/xui/form/outbound.html
  2. 1 1
      web/html/xui/settings.html

+ 1 - 1
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'>

+ 1 - 1
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>