diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-03-20 01:51:20 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-20 01:51:20 -0600 |
commit | e446d223597d73c8444bb39b0acb927a1779c245 (patch) | |
tree | 00b6d6559654970057de4f6f2e0422e880b87d58 /settings | |
parent | 81647a58db28aa332c4e6c73c99b37ca548fed2b (diff) | |
parent | 14f465879ccff8d1d58e5a4c8514b3783086e770 (diff) | |
download | nextcloud-server-e446d223597d73c8444bb39b0acb927a1779c245.tar.gz nextcloud-server-e446d223597d73c8444bb39b0acb927a1779c245.zip |
Merge pull request #3917 from michaelletzgus/html5-fix_dup-IDs
Fix duplicate id "apps-management"
Diffstat (limited to 'settings')
-rw-r--r-- | settings/js/apps.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/js/apps.js b/settings/js/apps.js index 8be18c4e9c0..d2f26578a7c 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -541,10 +541,10 @@ OC.Settings.Apps = OC.Settings.Apps || { if (navEntries.length > 7) { $('#more-apps').show(); - $('#apps-management').hide(); + $('.apps-management').hide(); } else { $('#more-apps').hide(); - $('#apps-management').show(); + $('.apps-management').show(); } } }); |