diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2025-06-30 17:44:55 +0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-30 17:44:55 +0600 |
commit | 1bc61e5959fcf1d1cf4b57cf6496630e32a9ec95 (patch) | |
tree | e9dc22f383d730bfcce04c3f6e8e167cb378b7ba /interface/index.html | |
parent | 09756fbbc2d5901958b7099420dd648d627b40ee (diff) | |
parent | ce2dba2f58b8dacbf0569d31d40e2c001c1cc0ab (diff) | |
download | rspamd-master.tar.gz rspamd-master.zip |
[WebUI] Add fuzzy flag selectors to Scan/Learn tab
Diffstat (limited to 'interface/index.html')
-rw-r--r-- | interface/index.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/interface/index.html b/interface/index.html index 61487ce29..30181e788 100644 --- a/interface/index.html +++ b/interface/index.html @@ -453,7 +453,8 @@ </div> <div class="input-group d-inline-flex w-auto my-1"> <label for="fuzzy-flag" class="input-group-text">Flag</label> - <input id="fuzzy-flag" class="form-control" value="1" min="1" type="number"> + <select id="fuzzy-flag-picker" class="form-select"></select> + <input id="fuzzy-flag" class="form-control flex-grow-0" value="1" min="1" type="number"> <button class="btn btn-warning d-flex align-items-center" data-upload="compute-fuzzy"><i class="fas fa-hashtag me-2"></i>Compute fuzzy hashes</button> </div> <div class="float-end my-1"> @@ -495,6 +496,7 @@ <div class="row g-2 align-items-center"> <div class="col-auto d-flex align-items-center me-1"> <label for="fuzzyFlagText" class="me-1">Flag:</label> + <select id="fuzzyFlagText-picker" class="form-select"></select> <input id="fuzzyFlagText" class="form-control" type="number" value="1"/> </div> <div class="col-auto d-flex align-items-center me-2"> |