@namespace Oqtane.Themes.Controls @inherits ContainerBase @((MarkupString)title) @code { string title = ""; protected override Task OnParametersSetAsync() { title = ModuleState.Title; // check for core module actions component if (Constants.DefaultModuleActions.Contains(PageState.Control)) { title = PageState.Control; } return Task.CompletedTask; } }