aboutsummaryrefslogtreecommitdiffstats
path: root/interface/js
diff options
context:
space:
mode:
authorAlexander Moisseev <moiseev@mezonplus.ru>2019-04-03 09:57:29 +0300
committerAlexander Moisseev <moiseev@mezonplus.ru>2019-04-03 09:57:29 +0300
commita8875bd228800e51e5fc24e357991ae89d3f9966 (patch)
tree1f792ae497f71e7a9b1f95be2b201c6f4a290243 /interface/js
parent186c9a09975de2644e3674a43f6dbb28bc0159c8 (diff)
downloadrspamd-a8875bd228800e51e5fc24e357991ae89d3f9966.tar.gz
rspamd-a8875bd228800e51e5fc24e357991ae89d3f9966.zip
[WebUI] Fix symbol score input type
Diffstat (limited to 'interface/js')
-rw-r--r--interface/js/app/symbols.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/interface/js/app/symbols.js b/interface/js/app/symbols.js
index 866478b1b..ed0a67583 100644
--- a/interface/js/app/symbols.js
+++ b/interface/js/app/symbols.js
@@ -87,7 +87,7 @@ define(["jquery", "footable"],
label_class = "scorebar-spam";
}
item.weight = "<input class=\"form-control input-sm mb-disabled " + label_class +
- "\" data-role=\"numerictextbox\" autocomplete=\"off\" \"type=\"number\" class=\"input\" min=\"" +
+ "\" data-role=\"numerictextbox\" autocomplete=\"off\" type=\"number\" class=\"input\" min=\"" +
min + "\" max=\"" +
max + "\" step=\"" + decimalStep(item.weight) +
"\" tabindex=\"1\" value=\"" + Number(item.weight).toFixed(3) +