diff options
| author | mhsanaei <ho3ein.sanaei@gmail.com> | 2025-08-14 19:38:56 +0300 |
|---|---|---|
| committer | mhsanaei <ho3ein.sanaei@gmail.com> | 2025-08-14 19:38:56 +0300 |
| commit | 9b51e9a5c5c087139454fca56ae5f375f40a017c (patch) | |
| tree | 64cb68e72bd4908a30ae0ea7ccaa11f4c4005a54 /web/html/settings/panel | |
| parent | 6879a8fbcba33dc56afa0ef0a172d506e1f874f3 (diff) | |
Freedom: Add maxSplit fragment option; Add applyTo noises option
Diffstat (limited to 'web/html/settings/panel')
| -rw-r--r-- | web/html/settings/panel/subscription/json.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/web/html/settings/panel/subscription/json.html b/web/html/settings/panel/subscription/json.html index a3729984..c8575e38 100644 --- a/web/html/settings/panel/subscription/json.html +++ b/web/html/settings/panel/subscription/json.html @@ -90,6 +90,18 @@ placeholder="10-20"></a-input> </template> </a-setting-list-item> + <a-setting-list-item paddings="small"> + <template #title>ApplyTo</template> + <template #control> + <a-select :value="noise.applyTo" :style="{ width: '100%' }" + :dropdown-class-name="themeSwitcher.currentTheme" + @change="(value) => updateNoiseApplyTo(index, value)"> + <a-select-option :value="p" :label="p" v-for="p in ['ip', 'ipv4', 'ipv6']" :key="p"> + <span>[[ p ]]</span> + </a-select-option> + </a-select> + </template> + </a-setting-list-item> <a-space direction="horizontal" :style="{ padding: '10px 20px' }"> <a-button v-if="noisesArray.length > 1" type="danger" @click="removeNoise(index)">Remove</a-button> |
