remove Module Creator in favor of using Create Module in Module Management

This commit is contained in:
sbwalker
2023-08-25 13:48:51 -04:00
parent ef2f779f71
commit 417c8d7874
3 changed files with 1 additions and 221 deletions

View File

@ -160,7 +160,7 @@
if (_owner != "" && _module != "" && _template != "-")
{
var template = _templates.FirstOrDefault(item => item.Name == _template);
_location = template.Location + _owner + "." + _module;
_location = template.Location + _owner + ".Module." + _module;
}
StateHasChanged();