Skip to content

Commit

Permalink
Remove redundant initializer
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Ratzman committed Dec 18, 2024
1 parent 15a784d commit 30f02ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/Components/DataGrid/FluentDataGrid.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ public partial class FluentDataGrid<TGridItem> : FluentComponentBase, IHandleEve
/// If not set and a <see cref="ItemsProvider"/> is present, the grid will show <see cref="LoadingContent"/> until the provider's first return.
/// </summary>
[Parameter]
public bool? Loading { get; set; } = null;
public bool? Loading { get; set; }

/// <summary>
/// Gets or sets the content to render when <see cref="Loading"/> is true.
Expand Down

0 comments on commit 30f02ad

Please sign in to comment.