fix #3793 - render issues on .NET MAUI

This commit is contained in:
sbwalker
2024-02-15 10:22:14 -05:00
parent 0fb45d4584
commit 7d1b4d916e
6 changed files with 30 additions and 6 deletions

View File

@ -4,7 +4,7 @@
@if (PageState.EditMode && UserSecurity.IsAuthorized(PageState.User, PermissionNames.Edit, PageState.Page.PermissionList) && PageState.Action == Constants.DefaultAction)
{
@if (PageState.Site.RenderMode == RenderModes.Interactive)
@if (PageState.RenderMode == RenderModes.Interactive)
{
<ModuleActionsInteractive PageState="@PageState" ModuleState="@ModuleState" />
}