diff options
author | Alexander Moisseev <moiseev@mezonplus.ru> | 2018-09-28 12:48:19 +0300 |
---|---|---|
committer | Alexander Moisseev <moiseev@mezonplus.ru> | 2018-09-28 12:48:19 +0300 |
commit | 60d43c5247baf5231608166f9387d6e066cf6531 (patch) | |
tree | f89db991d615cf23676d083f9969c72afd725de3 /interface/index.html | |
parent | 4cf94ce5492657adf002920df2fa6f03c1f02f5f (diff) | |
download | rspamd-60d43c5247baf5231608166f9387d6e066cf6531.tar.gz rspamd-60d43c5247baf5231608166f9387d6e066cf6531.zip |
[WebUI] History: add sorting by symbol score value
Diffstat (limited to 'interface/index.html')
-rw-r--r-- | interface/index.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/interface/index.html b/interface/index.html index 6eebef1d4..1cf363b96 100644 --- a/interface/index.html +++ b/interface/index.html @@ -291,7 +291,8 @@ <div class="form-group widget-title-form"> <label for="selSymOrder">Symbols order:</label> <select id="selSymOrder" class="form-control"> - <option value="score" selected>Score</option> + <option value="magnitude" selected>Score magnitude</option> + <option value="score">Score value</option> <option value="name">Name</option> </select> </div> |