summaryrefslogtreecommitdiff
path: root/js/AppBase.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/AppBase.js')
-rw-r--r--js/AppBase.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/js/AppBase.js b/js/AppBase.js
index 4552eea11..398acc31d 100644
--- a/js/AppBase.js
+++ b/js/AppBase.js
@@ -272,6 +272,14 @@ define(["dojo/_base/declare"], function (declare) {
}
}
+ if (k == "recent_log_events") {
+ const alert = $$(".log-alert")[0];
+
+ if (alert) {
+ v > 0 ? alert.show() : alert.hide();
+ }
+ }
+
if (k == "daemon_stamp_ok" && v != 1) {
Notify.error("<span onclick=\"App.explainError(3)\">Update daemon is not updating feeds.</span>", true);
return;