diff options
Diffstat (limited to 'apps/updatenotification/js/admin.js')
-rw-r--r-- | apps/updatenotification/js/admin.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/updatenotification/js/admin.js b/apps/updatenotification/js/admin.js index e5c942fbdab..3ca45a191d4 100644 --- a/apps/updatenotification/js/admin.js +++ b/apps/updatenotification/js/admin.js @@ -44,9 +44,9 @@ $(document).ready(function(){ var newChannel = $('#release-channel').find(":selected").val(); if (newChannel === 'git' || newChannel === 'daily') { - $('#oca_updatenotification_groups').addClass('hidden'); + $('#oca_updatenotification_groups em').removeClass('hidden'); } else { - $('#oca_updatenotification_groups').removeClass('hidden'); + $('#oca_updatenotification_groups em').addClass('hidden'); } $.post( |