"More" button now shows a tray containing overflowing apps that passed the set app limit

This commit is contained in:
copilaurobert
2018-08-20 15:57:58 +02:00
parent 4efc0c8be2
commit ab6d5d09e2
5 changed files with 115 additions and 131 deletions

View File

@@ -27,14 +27,6 @@ namespace Umbraco.Web.Models.Mapping
View = "views/content/apps/info/info.html"
};
private readonly ContentApp _moreApp = new ContentApp
{
Alias = "more",
Name = "More",
Icon = "icon-thumbnails-small",
View = "views/content/apps/info/info.html"
};
private readonly IDataTypeService _dataTypeService;
private readonly PropertyEditorCollection _propertyEditorCollection;
@@ -56,7 +48,6 @@ namespace Umbraco.Web.Models.Mapping
apps.Add(_contentApp);
apps.Add(_infoApp);
apps.Add(_moreApp);
return apps;
}