resolve naming issue for module/theme created from internal template

This commit is contained in:
sbwalker
2025-11-14 13:23:55 -05:00
parent 4daaaa8dbf
commit c9590247eb
2 changed files with 3 additions and 6 deletions

View File

@@ -227,8 +227,7 @@ namespace Oqtane.Controllers
if (theme.Template.ToLower().Contains("internal"))
{
rootPath = Utilities.PathCombine(rootFolder.FullName, Path.DirectorySeparatorChar.ToString());
var assemblyName = Assembly.GetExecutingAssembly().GetName().Name;
theme.ThemeName = theme.ThemeName + ", " + assemblyName.Replace(".Server", ".Client");
theme.ThemeName = theme.ThemeName + ", " + theme.Owner + ".Client.Oqtane";
}
else
{