Skip to content

Commit

Permalink
Update RadzenPager.razor.cs (#1827)
Browse files Browse the repository at this point in the history
Adjust default value of `FirstPageTitle` to have consistent value with other titles (no dot).
  • Loading branch information
skyline-dimica authored Dec 2, 2024
1 parent ca4bdad commit d02bafc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Radzen.Blazor/RadzenPager.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ protected override string GetComponentCssClass()
/// Gets or sets the pager's first page button's title attribute.
/// </summary>
[Parameter]
public string FirstPageTitle { get; set; } = "First page.";
public string FirstPageTitle { get; set; } = "First page";

/// <summary>
/// Gets or sets the pager's first page button's aria-label attribute.
Expand Down

0 comments on commit d02bafc

Please sign in to comment.