20 lines
433 B
Plaintext
20 lines
433 B
Plaintext
@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.Action))
|
|
{
|
|
title = PageState.Action;
|
|
}
|
|
return Task.CompletedTask;
|
|
}
|
|
}
|