summaryrefslogtreecommitdiff
path: root/js/PrefHelpers.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2020-12-24 15:02:47 +0300
committerAndrew Dolgov <[email protected]>2020-12-24 15:02:47 +0300
commit8cc07bc8bda35308a4c784c266ad9227562647d5 (patch)
treec072fcb91c1dab6b782f0257cc84fbe567904c4a /js/PrefHelpers.js
parente86b2e60d3cbb3454eaf922702e1aff29eac07f4 (diff)
event log: add severity filtering
Diffstat (limited to 'js/PrefHelpers.js')
-rw-r--r--js/PrefHelpers.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/PrefHelpers.js b/js/PrefHelpers.js
index 12710bc6a..0780fb708 100644
--- a/js/PrefHelpers.js
+++ b/js/PrefHelpers.js
@@ -51,7 +51,7 @@ const Helpers = {
return false;
},
updateEventLog: function() {
- xhrPost("backend.php", { op: "pref-system" }, (transport) => {
+ xhrPost("backend.php", { op: "pref-system", severity: dijit.byId("severity").attr('value') }, (transport) => {
dijit.byId('systemConfigTab').attr('content', transport.responseText);
Notify.close();
});