Improved CSS handling

This commit is contained in:
Shaun Walker
2019-09-21 22:15:44 -04:00
parent 054495056d
commit 5f62957752
15 changed files with 142 additions and 39 deletions

View File

@ -70,7 +70,7 @@
{
if (string.IsNullOrEmpty(PageSize))
{
MaxItems = 5;
MaxItems = 10;
}
else
{

View File

@ -102,6 +102,10 @@
{
permissionnames = "View,Edit";
}
else
{
permissionnames = PermissionNames;
}
roles = await RoleService.GetRolesAsync(ModuleState.SiteId);
roles.Insert(0, new Role { Name = Constants.AllUsersRole });