Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@page "/select-region"
@page "/select-region"
@inject IStringLocalizer<SelectRegions> Localizer

<h3>@Localizer["RegionTitle"]</h3>
Expand All @@ -7,6 +7,8 @@

<PackageTips Name="BootstrapBlazor.Region" />

<Pre>builder.Services.AddBootstrapBlazorRegionService()</Pre>
Copy link

Copilot AI Dec 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The service registration method call is missing a semicolon at the end. All similar documentation examples in the codebase (like AddBootstrapHolidayService) include a semicolon to show complete C# syntax.

Suggested change
<Pre>builder.Services.AddBootstrapBlazorRegionService()</Pre>
<Pre>builder.Services.AddBootstrapBlazorRegionService();</Pre>

Copilot uses AI. Check for mistakes.

<DemoBlock Title="@Localizer["RegionNormalTitle"]"
Introduction="@Localizer["RegionNormalIntro"]"
Name="Normal">
Expand Down