diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-10 11:04:24 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-24 11:26:54 +0200 |
commit | 12ec0dfe3cb9d960aabed5d1c92ded7c0a745b02 (patch) | |
tree | e99f1c352e33e07dd02331184360683b69c5eeba /apps/updatenotification/js | |
parent | 823e4911c9c543abf7143fbbe2287b5cd5f139ca (diff) | |
download | nextcloud-server-12ec0dfe3cb9d960aabed5d1c92ded7c0a745b02.tar.gz nextcloud-server-12ec0dfe3cb9d960aabed5d1c92ded7c0a745b02.zip |
The setting only affects available core updates
Diffstat (limited to 'apps/updatenotification/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( |