Updated Module Title using SetModuleTitle on ModuleBase

This commit is contained in:
Leigh Pointer
2023-08-08 16:37:40 +02:00
parent bd23ec268b
commit 2356753dfc
16 changed files with 67 additions and 0 deletions

View File

@ -68,6 +68,12 @@
private List<Models.HtmlText> _htmltexts;
private string _view = "";
protected override void OnParametersSet()
{
base.OnParametersSet();
base.SetModuleTitle(Localizer["ModuleTitle.Text"]);
}
protected override async Task OnInitializedAsync()
{
try