Try our conversational search powered by Generative AI!

A bug with administrationsettings attribute

Found in

EPiServer.CMS.UI 11.21.3

Fixed in

EPiServer.CMS.UI 11.23.1

(Or a related package)

Created

Oct 22, 2019

Updated

Dec 16, 2019

Area

CMS UI

State

Closed, Fixed and tested


Description

Steps to reproduce

1. Set AdministrationSettings attribute for a PageType, such as ArticlePage, and set CodeOnly = true like this:

[AdministrationSettings(
              GroupName = "New Page Types",
              Order = 1,
              CodeOnly = true)]
 public class ArticlePage : StandardPage
    {
        public virtual ContentReference RelatedPage { get; set; }
    }

Expected:
You cannot use the sorting arrows and change the sort order property.

Actual:
You can use the sorting arrows and change the sort order property.