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

@ -22,6 +22,11 @@
public override SecurityAccessLevel SecurityAccessLevel => SecurityAccessLevel.Edit;
public override string Title => "Export Content";
protected override void OnParametersSet()
{
base.OnParametersSet();
base.SetModuleTitle(Localizer["ModuleTitle.Text"]);
}
private async Task ExportModule()
{