diff --git a/src/Core/Context/CurrentContext.cs b/src/Core/Context/CurrentContext.cs index 4877a9a8f2..4751beb797 100644 --- a/src/Core/Context/CurrentContext.cs +++ b/src/Core/Context/CurrentContext.cs @@ -358,7 +358,9 @@ public class CurrentContext : ICurrentContext public async Task ViewAssignedCollections(Guid orgId) { - return await EditAssignedCollections(orgId) || await DeleteAssignedCollections(orgId); + return await CreateNewCollections(orgId) // Required to display the existing collections under which the new collection can be nested + || await EditAssignedCollections(orgId) + || await DeleteAssignedCollections(orgId); } public async Task ManageGroups(Guid orgId)