Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Review comment
  • Loading branch information
vnbaaij committed Mar 12, 2025
commit 56aec0b733d2b422f5efdf58e5dae4c5ec971429
3 changes: 2 additions & 1 deletion src/Core/Components/DataGrid/FluentDataGrid.razor
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
@using Microsoft.AspNetCore.Components.Rendering
@using Microsoft.FluentUI.AspNetCore.Components.DataGrid.Infrastructure
@using System.Globalization
@namespace Microsoft.FluentUI.AspNetCore.Components
@inherits FluentComponentBase
@typeparam TGridItem
Expand Down Expand Up @@ -241,7 +242,7 @@
}
else
{
colspan = _columns.Count.ToString();
colspan = _columns.Count.ToString(CultureInfo.InvariantCulture);
}

<FluentDataGridRow Class="@LOADING_CONTENT_ROW_CLASS" TGridItem="TGridItem">
Expand Down