fix #3231 - validate module description

This commit is contained in:
sbwalker
2023-09-20 14:29:06 -04:00
parent e0ebf70907
commit a6ca843ced
5 changed files with 29 additions and 186 deletions

View File

@ -80,7 +80,10 @@
protected override void OnInitialized()
{
AddModuleMessage(Localizer["Info.Theme.CreatorIntent"], MessageType.Info);
if (!NavigationManager.BaseUri.Contains("localhost:"))
{
AddModuleMessage(Localizer["Info.Theme.CreatorIntent"], MessageType.Info);
}
}
protected override async Task OnParametersSetAsync()