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

@ -1,7 +1,7 @@
@namespace Oqtane.UI
@inject SiteState SiteState
@if (PageState.Site.RenderMode == RenderModes.Interactive || ModuleState.RenderMode == RenderModes.Static)
@if (PageState.RenderMode == RenderModes.Interactive || ModuleState.RenderMode == RenderModes.Static)
{
<RenderModeBoundary ModuleState="@ModuleState" PageState="@PageState" SiteState="@SiteState" />
}