Merge pull request #2898 from vnetonline/dev

[ENHANCE] - Added Theme to Name Space [Owner].Theme.[Theme]
This commit is contained in:
Shaun Walker
2023-06-19 10:25:01 -04:00
committed by GitHub
14 changed files with 35 additions and 61 deletions

View File

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