Don't miss out Virtual Happy Hour this Friday (April 26).

Try our conversational search powered by Generative AI!

ViewConfiguration not using "Name" property

Found in

EPiServer.CMS.UI 9.2.0

Fixed in

EPiServer.CMS.Core 9.3.3

(Or a related package)

Created

Sep 30, 2015

Updated

Dec 16, 2015

Area

CMS Core

State

Closed, Fixed and tested


Description

If you create a new ViewConfiguration, the "Name" property is not used. Instead, you get "missing text for ...".
Steps to Reproduce
1. Create a new viewconfiguration in a standard alloy site with EPiServer.CMS.UI 9.2.0 installed:

[ServiceConfiguration(typeof(ViewConfiguration))]
public class TestViewConfiguration : ViewConfiguration<IContentData>
{
public TestViewConfiguration()

{ Key = "mykey"; Name = "My view"; Description = "My description"; ControllerType = "whatver"; }

}

2. Go to edit mode.
3. Observe that the new view option is there, but the text does not say "My view", it says "Missing text /name for english"

Expected: The name of the view is displayed.
Actual: You get "missing text..."