From 511a5d9c3d45964d804c8df640669aa6dc7b5288 Mon Sep 17 00:00:00 2001
From: Techywarrior
Below are your media collections. Expand a collection to add or remove media locations assigned to it.
-This is the default media library that will be shared with all users unless they setup their own.
+This is the default media library that will be shared with all users unless they setup their own.
diff --git a/dashboard-ui/scripts/medialibrarypage.js b/dashboard-ui/scripts/medialibrarypage.js index dbcacb9138..758fe67ee4 100644 --- a/dashboard-ui/scripts/medialibrarypage.js +++ b/dashboard-ui/scripts/medialibrarypage.js @@ -29,6 +29,7 @@ if (user.Configuration.UseCustomLibrary) { ApiClient.getVirtualFolders(userId).done(MediaLibraryPage.reloadVirtualFolders); + $(".editing_default").hide(); $('#divMediaLibrary', page).show(); } else { $('#divMediaLibrary', page).hide(); @@ -118,6 +119,8 @@ user.Configuration.UseCustomLibrary = !useDefaultLibrary; ApiClient.updateUser(user).done(MediaLibraryPage.reloadLibrary); + + $(".editing_default").hide(); }); }, diff --git a/dashboard-ui/wizardlibrary.html b/dashboard-ui/wizardlibrary.html index a6cc8a7fcf..3c8ef32791 100644 --- a/dashboard-ui/wizardlibrary.html +++ b/dashboard-ui/wizardlibrary.html @@ -17,7 +17,7 @@
Below are your media collections. Expand a collection to add or remove media locations assigned to it.
+This is the default media library that will be shared with all users unless they setup their own.
From 62f3be68843a381585c619c6763e1bae309da577 Mon Sep 17 00:00:00 2001 From: Techywarrior