allow page themes to be different from site theme - display warning message

This commit is contained in:
sbwalker
2023-07-13 08:58:43 -04:00
parent 08438c7725
commit 68cdcd193c
5 changed files with 58 additions and 24 deletions

View File

@ -288,12 +288,13 @@ else
if (_themetype != "-")
{
_containers = ThemeService.GetContainerControls(_themeList, _themetype);
}
_containertype = _containers.First().TypeName;
}
else
{
_containers = new List<ThemeControl>();
}
_containertype = "-";
_containertype = "-";
}
_admincontainertype = "";
StateHasChanged();
}