diff --git a/src/BootstrapBlazor.Shared/Components/Samples/Layouts.razor b/src/BootstrapBlazor.Shared/Components/Samples/Layouts.razor
index 4263f73adcc..4f5f2437d7b 100644
--- a/src/BootstrapBlazor.Shared/Components/Samples/Layouts.razor
+++ b/src/BootstrapBlazor.Shared/Components/Samples/Layouts.razor
@@ -40,7 +40,7 @@
Introduction="@Localizer["LayoutsUpAndDownIntro"]"
Name="UpAndDown">
-
+
@@ -58,7 +58,7 @@
Introduction="@Localizer["LayoutsMiddleLeftRightIntro"]"
Name="MiddleLeftRight">
-
+
@@ -79,7 +79,7 @@
Introduction="@Localizer["LayoutsLeftRightIntro"]"
Name="LeftRight">
-
+
@@ -100,7 +100,7 @@
Introduction="@Localizer["LayoutsCustomPercentIntro"]"
Name="CustomPercent">
-
+
@@ -140,7 +140,7 @@
@((MarkupString)Localizer["LayoutsAppTips7"].Value)
-
+
@@ -158,7 +158,7 @@
@Localizer["LayoutsAppTips8"]
-
+
diff --git a/src/BootstrapBlazor/Components/Layout/Layout.razor b/src/BootstrapBlazor/Components/Layout/Layout.razor
index 3e69a3defb5..451e02a8090 100644
--- a/src/BootstrapBlazor/Components/Layout/Layout.razor
+++ b/src/BootstrapBlazor/Components/Layout/Layout.razor
@@ -29,7 +29,7 @@
}
@if (Menus != null)
{
- @RenderMenu(IsFullSide)
+ @RenderMenu
}
@@ -58,7 +58,7 @@
}
@if (Menus != null)
{
- @RenderMenu(IsFullSide)
+ @RenderMenu
}
@RenderMain
@@ -100,9 +100,9 @@
@Header
;
- RenderFragment RenderMenu => hasScroll =>
+ RenderFragment RenderMenu =>
@