aboutsummaryrefslogtreecommitdiffstats
path: root/view/js
diff options
context:
space:
mode:
Diffstat (limited to 'view/js')
-rw-r--r--view/js/main.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/view/js/main.js b/view/js/main.js
index 66a0bda2f..da1894f88 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -1876,10 +1876,12 @@ function sse_setNotificationsStatus() {
if(any_available) {
$('.notifications-btn').css('opacity', 1);
$('#no_notifications').hide();
+ $('#notifications').show();
}
else {
$('.notifications-btn').css('opacity', 0.5);
$('#navbar-collapse-1').removeClass('show');
$('#no_notifications').show();
+ $('#notifications').hide();
}
}